forked from actionsdemos/calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 875 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
30
31
32
33
34
35
36
{
"name": "calculator",
"version": "1.0.0",
"description": "Calculator",
"repository": {
"type": "git",
"url": "https://github.com/azure-pipelines-samples/node.js"
},
"main": "index.js",
"scripts": {
"start": "node server.js",
"build": "exit 0",
"test": "nyc --reporter=cobertura --reporter=html --reporter=text mocha --timeout 10000 --reporter mocha-multi-reporters --reporter-options configFile=test/config.json"
},
"keywords": [
"azure",
"pipelines",
"devops",
"vsts",
"ci",
"cd"
],
"author": "Edward Thomson <ethomson@microsoft.com>",
"license": "MIT",
"dependencies": {
"express": "^4.16.4"
},
"devDependencies": {
"chai": "^4.2.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"
}
}