forked from heycalmdown/node-supervisor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.17 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
{ "name" : "supervisor"
, "version" : "0.4.1"
, "description" : "A supervisor program for running nodejs programs"
, "author" : "Isaac Z. Schlueter <[email protected]>"
, "contributors" :
[ "Todd Branchflower <[email protected]>"
, "Brian Ehmann <[email protected]>"
, "Corey Jewett <[email protected]>"
, "Taka Kojima <[email protected]>"
, "Jonathan 'Wolf' Rentzsch <[email protected]>"
, "Scott Sanders <[email protected]>"
, "Fernando H. Silva <[email protected]>"
, "David Taylor <[email protected]>"
, "Antonio Touriño <[email protected]>"
, "Oliver Wong <[email protected]>"
, "Ian Young <[email protected]>"
, "Giannis Dzegoutanis <[email protected]>"
, "jazzzz <[email protected]>"
, "rma4ok <[email protected]>"
]
, "repository":
{ "type": "git"
, "url": "git://github.com/isaacs/node-supervisor.git"
}
, "bugs": "https://github.com/isaacs/node-supervisor/issues"
, "homepage": "https://github.com/isaacs/node-supervisor/"
, "main" : "lib/supervisor.js"
, "bin" :
{ "node-supervisor" : "lib/cli-wrapper.js"
, "supervisor" : "lib/cli-wrapper.js"
}
, "engines" : { "node" : ">=0.3.7" }
, "preferGlobal" : true
}