forked from petruisfan/node-supervisor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.45 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
{ "name" : "supervisor"
, "version" : "0.5.3"
, "description" : "A supervisor program for running nodejs programs"
, "author" : "Isaac Z. Schlueter <[email protected]>"
, "contributors" :
[ "Todd Branchflower <[email protected]>"
, "Giannis Dzegoutanis <[email protected]>"
, "Brian Ehmann <[email protected]>"
, "Corey Jewett <[email protected]>"
, "Taka Kojima <[email protected]>"
, "Aneil Mallavarapu <[email protected]>"
, "David Murdoch <[email protected]>"
, "Michiel ter Reehorst <[email protected]>"
, "Jonathan 'Wolf' Rentzsch <[email protected]>"
, "John Roberts <[email protected]>"
, "Scott Sanders <[email protected]>"
, "Fernando H. Silva <[email protected]>"
, "Kei Son <[email protected]>"
, "David Taylor <[email protected]>"
, "Antonio Touriño <[email protected]>"
, "Oliver Wong <[email protected]>"
, "Di Wu <[email protected]>"
, "Jesse Yang <[email protected]>"
, "Ian Young <[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
}