forked from foreversd/forever
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (57 loc) · 1.29 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
50
51
52
53
54
55
56
57
{
"name": "forever",
"preferGlobal": "true",
"description": "A simple CLI tool for ensuring that a given node script runs continuously (i.e. forever)",
"version": "0.9.2",
"author": "Nodejitsu Inc. <info@nodejitsu.com>",
"maintainers": [
"indexzero <charlie@nodejitsu.com>",
"mmalecki <maciej@nodejitsu.com>",
"avianflu <charlie@charlieistheman.com>"
],
"repository": {
"type": "git",
"url": "http://github.com/nodejitsu/forever.git"
},
"keywords": [
"cli",
"fault tolerant",
"sysadmin",
"tools"
],
"dependencies": {
"broadway": "0.1.x",
"cliff": "0.x.x",
"daemon": "0.5.x",
"flatiron": "0.1.x",
"microtime": "0.2.x",
"minimatch": "0.2.x",
"nconf": "0.5.x",
"nssocket": "0.3.x",
"node-fork": "0.4.x",
"optimist": "0.3.x",
"pkginfo": "0.x.x",
"portfinder": "0.x.x",
"ps-tree": "0.0.x",
"timespan": "2.0.x",
"watch": "0.5.x",
"utile": "0.0.x",
"winston": "0.5.x"
},
"devDependencies": {
"eventemitter2": "0.4.x",
"request": "2.x.x",
"vows": "0.5.x"
},
"bin": {
"forever": "./bin/forever",
"foreverd": "./bin/foreverd"
},
"main": "./lib/forever",
"scripts": {
"test": "vows test/**/*-test.js --spec -i"
},
"engines": {
"node": ">= 0.4.8"
}
}