-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1001 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 1001 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
25
26
27
28
29
30
31
32
33
{
"name": "your-service-name",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node src/index.js",
"watch": "nodemon src/index.js",
"lint": "eslint .",
"linter-fix": "eslint --fix .",
"healthcheck": "node src/modules/healthcheck.js",
"test": "mocha src/tests/* --exit",
"test:coverage": "nyc -x src/tests/* mocha src/tests --exit",
"test:auto-watch": "mocha src/tests/* --watch",
"test:pipeline": "mocha src/tests/* --reporter mocha-junit-reporter --reporter-options mochaFile=/pipeline/test-results/mocharesults.xml --exit"
},
"dependencies": {
"express": "^4.17.1",
"prom-client": "^11.5.3"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.2.0",
"eslint": "^4.19.1",
"eslint-config-strongloop": "^2.1.0",
"mocha": "^5.0.0",
"mocha-junit-reporter": "^1.23.1",
"nodemon": "^1.19.2",
"nyc": "^14.1.1",
"rewire": "^4.0.1",
"sinon": "^4.5.0"
}
}