forked from Azure/AtUniverse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 788 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 788 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
{
"name": "HelloWorld",
"private": true,
"version": "0.0.0",
"description": "Hello World",
"main": "server.js",
"author": {
"name": "",
"email": ""
},
"dependencies": {
"express": "^4.13.3",
"mocha": "^5.2.0"
},
"devDependencies": {
"gulp": "^4.0.0",
"gulp-istanbul": "^1.1.3",
"gulp-mocha": "^6.0.0",
"mocha-junit-reporter": "^1.12.0",
"nyc": "^12.0.2"
},
"scripts": {
"build": "nyc --reporter=cobertura --reporter=html ./node_modules/.bin/mocha tests/**/*.js --reporter mocha-junit-reporter --reporter-options mochaFile=./TEST-RESULTS.xml",
"test": "nyc --reporter=cobertura --reporter=html ./node_modules/.bin/mocha tests/**/*.js --reporter mocha-junit-reporter --reporter-options mochaFile=./TEST-RESULTS.xml"
}
}