-
Notifications
You must be signed in to change notification settings - Fork 945
/
Copy pathpackage.json
56 lines (56 loc) · 1.39 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
{
"name": "forever",
"preferGlobal": "true",
"description": "A simple CLI tool for ensuring that a given node script runs continuously (i.e. forever)",
"version": "0.7.2",
"author": "Nodejitsu Inc <info@nodejitsu.com>",
"contributors": [
{ "name": "Charlie Robbins", "email": "charlie@nodejitsu.com" },
{ "name": "Fedor Indutny", "email": "fedor.indutny@gmail.com" },
{ "name": "James Halliday", "email": "mail@substack.net" },
{ "name": "Bradley Meck", "email": "bradley@nodejitsu.com" },
{ "name": "Dominic Tarr", "email": "dominic@nodejitsu.com" }
],
"repository": {
"type": "git",
"url": "http://github.com/indexzero/forever.git"
},
"keywords": [
"cli",
"fault tolerant",
"sysadmin",
"tools"
],
"dependencies": {
"async": "0.1.x",
"colors": "0.x.x",
"cliff": "0.x.x",
"clip": "0.x.x",
"dnode": "0.8.x",
"daemon": "0.3.x >=0.3.2",
"minimatch": "0.0.x",
"mkdirp": "0.x.x",
"nconf": "0.x.x",
"optimist": "0.2.x",
"pkginfo": "0.x.x",
"portfinder": "0.x.x",
"ps-tree": "0.0.x",
"timespan": "2.0.x",
"watch": "0.3.x",
"winston": "0.5.x"
},
"devDependencies": {
"vows": "0.5.x"
},
"bin": {
"forever": "./bin/forever",
"foreverd": "./bin/foreverd"
},
"main": "./lib/forever",
"scripts": {
"test": "vows --spec --isolate"
},
"engines": {
"node": ">= 0.4.0"
}
}