forked from LearnBoost/up
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 705 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 705 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
{
"name": "up"
, "description": "Zero downtime reloads for Node HTTP(S) servers."
, "tags": ["cluster", "reload", "process", "monitor", "graceful", "restart"]
, "homepage": "https://github.com/learnboost/up"
, "version": "0.2.1"
, "bin": { "up": "./bin/up" }
, "main": "./lib/up"
, "engines": { "node": ">= 0.6.0" }
, "dependencies": {
"eq": "0.1.0"
, "ms": "0.1.0"
, "debug": "0.1.0"
, "commander": "0.6.1"
, "distribute": "0.1.4"
}
, "devDependencies": {
"mocha": "*"
, "expect.js": "*"
, "express": "*"
, "superagent": "*"
}
, "scripts": {
"test": "./node_modules/mocha/bin/mocha test/*.test.js"
}
}