-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 870 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "lambda-test",
"version": "1.0.0",
"description": "",
"main": "handler.js",
"scripts": {
"test:ci": "node_modules/.bin/nyc --reporter=lcov --reporter=text --check-coverage --lines 95 --functions 95 --branches 95 node node_modules/.bin/ava --tap | tap-xunit > ~/reports/ava.xml",
"test": "node_modules/.bin/nyc --reporter=lcov --reporter=text --check-coverage --lines 95 --functions 95 --branches 95 node node_modules/.bin/ava -v ./**/*ava.test.js",
"test:watch": "node node_modules/.bin/ava --verbose --watch ./**/*ava.test.js",
"offline": "sls offline start &"
},
"author": "",
"license": "ISC",
"dependencies": {
"moment": "^2.20.1"
},
"devDependencies": {
"ava": "^0.25.0",
"axios": "^0.17.1",
"nyc": "^11.4.1",
"serverless-offline": "^3.17.0",
"serverless-plugin-optimize": "^3.0.4-rc.1"
}
}