-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 896 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 896 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": "tracking",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "mocha",
"test-coverage": "npm test && istanbul cover node_modules/mocha/bin/_mocha -- -R spec",
"install-local": "npm install -g yo & npm install -g generator-webapp & npm install -g generator-express-rest-api & npm install -g mocha & npm install -g node-inspector & npm install",
"start": "node server.js 1 prod 127.0.0.1 3000 9000",
"debug": "node-debug server.js 0 dev 127.0.0.1 3000 9000"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"none"
],
"author": "",
"license": "",
"devDependencies": {
"chai": "^3.5.0",
"istanbul": "^0.4.4",
"mocha": "^3.0.2",
"sinon": "^1.17.5"
},
"dependencies": {
"body-parser": "^1.15.2",
"cluster-service": "^2.0.0-alpha4",
"express": "^4.14.0"
}
}