-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.01 KB
/
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
{
"name": "sns-payload-validator",
"version": "2.1.0",
"description": "Node.js library that validates an AWS SNS payload of an HTTP/S POST or Lambda.",
"main": "lib/index",
"types": "lib/index.d.ts",
"files": [
"lib",
"interfaces"
],
"dependencies": {
"lru-cache": "^7.14.1"
},
"devDependencies": {
"@hapi/code": "^9.0.1",
"@hapi/lab": "^25.0.1",
"@types/node": "^18.0.0",
"nock": "^13.1.3",
"node-forge": "^1.2.1",
"typescript": "^5.0.4"
},
"scripts": {
"test": "lab -a @hapi/code -t 100 -L -m 10000 -Y",
"test-cov-html": "lab -r html -o coverage.html -a @hapi/code -L -m 10000",
"test-cov-lcov": "lab -r lcov -o coverage.info"
},
"repository": {
"type": "git",
"url": "https://github.com/devinstewart/sns-payload-validator.git"
},
"keywords": [
"AWS",
"SNS",
"Validate",
"JavaScript",
"node"
],
"eslintConfig": {
"extends": [
"plugin:@hapi/module"
]
},
"author": "Devin Stewart",
"license": "MIT"
}