forked from foreversd/forever
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.55 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
58
59
60
{
"name": "forever",
"preferGlobal": "true",
"description": "A simple CLI tool for ensuring that a given node script runs continuously (i.e. forever)",
"version": "0.8.5",
"author": "Nodejitsu Inc <[email protected]>",
"contributors": [
{ "name": "Charlie Robbins", "email": "[email protected]" },
{ "name": "Fedor Indutny", "email": "[email protected]" },
{ "name": "James Halliday", "email": "[email protected]" },
{ "name": "Bradley Meck", "email": "[email protected]" },
{ "name": "Dominic Tarr", "email": "[email protected]" },
{ "name": "Maciej Małecki", "email": "[email protected]" }
],
"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.4.x",
"flatiron": "0.1.x",
"microtime": "0.2.x",
"minimatch": "0.0.x",
"nconf": "0.5.x",
"nssocket": "0.3.x",
"node-fork": "0.4.x",
"optimist": "0.2.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"
}
}