-
Notifications
You must be signed in to change notification settings - Fork 261
/
package.json
57 lines (57 loc) · 1.89 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": "supervisor",
"version": "0.12.0",
"description": "A supervisor program for running nodejs programs",
"author": "Isaac Z. Schlueter <[email protected]>",
"license": "MIT",
"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]>",
"Doug McCall <[email protected]>",
"Mathieu M-Gosselin <[email protected]>",
"David Murdoch <[email protected]>",
"mx1700 <[email protected]>",
"Michiel ter Reehorst <[email protected]>",
"Jonathan 'Wolf' Rentzsch <[email protected]>",
"John Roberts <[email protected]>",
"Scott Sanders <[email protected]>",
"Thomas Schaaf <[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]>",
"philpill <[email protected]>",
"rma4ok <[email protected]>",
"Petru Isfan <[email protected]>"
],
"repository": {
"type": "git",
"url": "git://github.com/petruisfan/node-supervisor.git"
},
"bugs": "https://github.com/petruisfan/node-supervisor/issues",
"homepage": "https://github.com/petruisfan/node-supervisor/",
"main": "lib/supervisor.js",
"bin": {
"node-supervisor": "lib/cli-wrapper.js",
"supervisor": "lib/cli-wrapper.js"
},
"engines": {
"node": ">=0.6.0"
},
"scripts": {
"test": "./node_modules/nodeunit/bin/nodeunit test/*.test.js"
},
"preferGlobal": true,
"devDependencies": {
"nodeunit": "~0.9.0"
}
}