forked from matthewmueller/sns.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.02 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
46
47
48
{
"name": "sns.js",
"version": "1.1.0",
"description": "simple publish and parse module for SNS",
"keywords": [
"sns",
"amazon",
"aws"
],
"author": "Matthew Mueller <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/MatthewMueller/sns.js.git"
},
"dependencies": {
"aws-sdk": "2.6.1",
"deferral": "1.0.0",
"lambda-sns-event-message": "1.0.2",
"object-assign": "4.1.0"
},
"devDependencies": {
"async-to-gen": "1.1.0",
"babel-eslint": "6.1.2",
"mocha": "3.0.2",
"nyc": "8.1.0",
"snazzy": "5.0.0"
},
"main": "src/index",
"scripts": {
"test:watch": "mocha -w",
"test:cov": "nyc --reporter=lcov mocha && open coverage/lcov-report/index.html",
"test:only": "mocha",
"test": "nyc mocha",
"lint": "snazzy",
"pretest": "npm run lint"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"describe",
"it",
"before",
"beforeEach",
"after",
"afterEach"
]
}
}