-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 763 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 763 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
{
"name": "express-di-test",
"version": "0.0.0",
"description": "hello world",
"main": "server.js",
"scripts": {
"test": "mocha",
"install-local": "npm install -g mocha & npm install -g node-inspector & npm install",
"start": "node server.js 1 127.0.0.1 3000 9000",
"debug": "node-debug server.js 0 127.0.0.1 3000 9000"
},
"repository": {
"type": "git",
"url": "none"
},
"keywords": [
"none"
],
"author": "Tim Walker <tim.r.walker@gmail.com> (https://twitter.com/tim_walker)",
"license": "MIT",
"devDependencies": {
"node-inspector": "^0.7.4"
},
"dependencies": {
"body-parser": "^1.6.3",
"cluster-service": "^1.0.5",
"express": "^4.7.1",
"express-dependency-injector": "^2.0.3"
}
}