-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 796 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 796 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
{
"name": "restify-node",
"version": "1.0.0",
"description": "Node application using restify",
"main": "server.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/trwalker/restify-node"
},
"dependencies": {
"restify": "~2.7.0",
"di": "2.0.0-pre-9",
"cluster-service": "^1.0.3"
},
"devDependencies": {
"chai": "^1.9.1",
"mocha": "^1.18.2",
"grunt-mocha-cli": "^1.8.0",
"sinon": "^1.9.1",
"node-inspector": "^0.7.3"
},
"scripts": {
"test": "mocha",
"install-local" : "npm install -g mocha & npm install -g node-inspector & npm install -g grunt-mocha-cli & npm install",
"start": "node server.js 1 127.0.0.1 3000 9000"
},
"author": "Tim Walker",
"license": "ISC"
}