-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1007 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
{
"name": "hapi-sns",
"version": "1.1.0",
"description": "A hapi plugin that exposes an sns pub/sub service to your hapi toolkit",
"author": "Andre Gallo <afgallo@gmail.com>",
"license": "MIT",
"main": "lib/index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "lab -a @hapi/code -L -l -t 100",
"test:ci": "lab -a @hapi/code -L -l -t 100 -r lcov -o lcov.info",
"lint": "eslint ."
},
"dependencies": {
"@aws-sdk/client-sns": "3.635.0"
},
"devDependencies": {
"@hapi/code": "9.x.x",
"@hapi/eslint-plugin": "6.x.x",
"@hapi/hapi": "21.3.12",
"@hapi/lab": "25.x.x",
"eslint": "8.x.x",
"eslint-config-prettier": "8.x.x",
"eslint-config-standard": "17.x.x",
"eslint-plugin-prettier": "4.x.x",
"prettier": "2.x.x",
"sinon": "18.x.x"
},
"peerDependencies": {
"@aws-sdk/client-sns": "3.x.x",
"@hapi/hapi": "21.x.x"
},
"keywords": [
"hapi",
"sns",
"aws",
"queue"
]
}