-
Notifications
You must be signed in to change notification settings - Fork 209
/
package.json
48 lines (48 loc) · 1.2 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "node-calculator",
"version": "1.0.0",
"description": "Calculator",
"repository": {
"type": "git",
"url": "https://github.com/demo/node-calculator.git"
},
"main": "index.js",
"scripts": {
"start": "nodemon server.js",
"build": "exit 0",
"lint": "eslint ./api/**/*.js ./server.js",
"test": "nyc --reporter=cobertura --reporter=html --reporter=text mocha --timeout 10000 --reporter mocha-multi-reporters --reporter-options configFile=test/config.json && ./node_modules/.bin/gulp inlinesource"
},
"keywords": [
"azure",
"pipelines",
"devops",
"vsts",
"ci",
"cd"
],
"author": "Demo User",
"license": "MIT",
"dependencies": {
"express": "^4.16.4",
"nodemon": "^2.0.20"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^8.29.0",
"gulp": "^4.0.0",
"gulp-inline-source": "^4.0.0",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.18.0",
"mocha-multi-reporters": "^1.1.7",
"nyc": "^13.3.0",
"supertest": "^3.4.2"
},
"bugs": {
"url": "https://github.com/demo/node-calculator/issues"
},
"homepage": "https://github.com/demo/node-calculator#readme",
"directories": {
"test": "test"
}
}