-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1022 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "sns-cloudflare-validator",
"version": "1.0.2",
"description": "A plugin for Cloudflare Workers that validates SNS messages",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"lint": "eslint ./ --max-warnings 0",
"test": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/devinstewart/sns-cloudflare-validator.git"
},
"devDependencies": {
"@hapi/eslint-plugin": "^6.0.0",
"@vitest/coverage-v8": "^0.34.4",
"eslint": "^8.49.0",
"msw": "^1.3.1",
"vitest": "^0.34.4",
"wrangler": "^3.0.0"
},
"dependencies": {
"lru-cache": "^10.0.1"
},
"eslintConfig": {
"extends": [
"plugin:@hapi/recommended"
],
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2020
}
},
"author": "Devin Stewart",
"license": "MIT",
"keywords": [
"AWS",
"SNS",
"Cloudflare",
"Validate",
"JavaScript"
]
}