-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.32 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
{
"name": "serverless-issue-3965",
"version": "1.0.0",
"description": "Illustrate issue raised in 3965",
"author": "indieisaconcept <me@indieisaconcept.com> (http://indieisaconcept.com)",
"scripts": {
"clean": "trash ./test/coverage .nyc_output",
"test": "npm run lint && ava --verbose",
"test:tap": "npm run lint -- -f ./node_modules/eslint-tap > ./lint.tap && ava --verbose --tap > ./results.tap",
"pretest": "npm run clean",
"pretest:tap": "npm run pretest",
"lint": "eslint ./handler.js ./lib ./test",
"cover": "nyc ava",
"precover": "npm run pretest",
"postcover": "nyc report --reporter=html",
"serverless": "serverless"
},
"repository": {
"type": "git",
"url": "http://github.com/indieisaconcept/serverless-issue-3965"
},
"devDependencies": {
"ava": "0.21.0",
"eslint": "4.3.0",
"eslint-config-semistandard": "11.0.0",
"eslint-config-standard": "10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-react": "7.1.0",
"eslint-plugin-standard": "3.0.1",
"eslint-tap": "2.0.1",
"nyc": "11.0.3",
"serverless": "1.18.0",
"serverless-offline": "3.15.1",
"serverless-plugin-include-dependencies": "2.1.2",
"trash-cli": "1.4.0"
},
"private": true
}