-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
29 lines (29 loc) · 910 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
{
"name": "express-HelloWorld",
"description": "Hello World ExpressJS WebService",
"version": "0.0.1",
"private": true,
"dependencies": {
"aws-serverless-express": "^3.1.3",
"axios": "^0.18.0",
"express": "4.16.2"
},
"devDependencies": {
"chai": "^4.1.2",
"istanbul": "^0.4.5",
"mocha": "5.0.0",
"serverless-offline": "^5.12.1",
"sinon": "^4.5.0",
"supertest": "3.0.0",
"unit.js": "2.0.0"
},
"scripts": {
"test": "mocha --recursive tests",
"test-once": "mocha --recursive tests --exit",
"test-coverage": "istanbul cover _mocha --recursive tests",
"e2e": "mocha --recursive tests/e2e",
"e2e-once": "mocha --recursive tests/e2e",
"load": "./tests/load/gatling-2.3.1/bin/gatling.sh -m -s userEmbedLoadTests.basicRampUpTest",
"precommit": "npm run test-once && istanbul cover _mocha --recursive tests && npm run e2e-once"
}
}