forked from rjminsha/d2bm-container-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 822 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
{
"name": "docker-hello",
"private": true,
"version": "0.0.1",
"description": "Basic hello world application for Node.js",
"author": "Robbie Minshall <[email protected]>",
"scripts": {
"test-fvt": "mocha test/fvt-test.js --reporter json --reporter-options output=test/fvt-test.json | tee test/fvt-test.json",
"start-server": "node --max-http-header-size=65535 app.js testApp",
"stop-server": "killall -SIGINT testApp",
"test-unit": "mocha test/unit-test.js --reporter json --reporter-options output=test/unit-test.json | tee test/unit-test.json"
},
"dependencies": {
"express": "4.17.1",
"should": "*",
"nconf": "*",
"validator": "*",
"jquery": "*",
"request-json": "*"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^7.0.1",
"nyc": "*"
}
}