forked from foreversd/forever
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.09 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "forever",
"preferGlobal": "true",
"description": "A simple CLI tool for ensuring that a given node script runs continuously (i.e. forever)",
"version": "0.13.0",
"author": "Charlie Robbins <[email protected]>",
"maintainers": [
"mmalecki <[email protected]>",
"avianflu <[email protected]>"
],
"repository": {
"type": "git",
"url": "http://github.com/nodejitsu/forever.git"
},
"keywords": [
"cli",
"fault tolerant",
"sysadmin",
"tools"
],
"dependencies": {
"colors": "~0.6.2",
"cliff": "~0.1.9",
"flatiron": "~0.4.2",
"forever-monitor": "~1.5.1",
"nconf": "~0.6.9",
"nssocket": "~0.5.1",
"optimist": "~0.6.0",
"timespan": "~2.3.0",
"utile": "~0.2.1",
"winston": "~0.8.1"
},
"devDependencies": {
"broadway": "~0.3.6",
"eventemitter2": "0.4.x",
"request": "2.x.x",
"vows": "0.7.x"
},
"bin": {
"forever": "./bin/forever"
},
"main": "./lib/forever",
"scripts": {
"test": "vows test/**/*-test.js --spec -i"
},
"engines": {
"node": ">= 0.8.x"
}
}