forked from petruisfan/node-supervisor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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.10.0",
"description": "A supervisor program for running nodejs programs",
"author": "Isaac Z. Schlueter <i@izs.me>",
"license": "MIT",
"contributors": [
"Todd Branchflower <toddbran@stanford.edu>",
"Giannis Dzegoutanis <erasmospunk@gmail.com>",
"Brian Ehmann <behmann@gmail.com>",
"Corey Jewett <cj@syntheticplayground.com>",
"Taka Kojima <taka.kojima@ff0000.com>",
"Aneil Mallavarapu <aneil@blipboard.com>",
"Doug McCall <dhm116@psu.edu>",
"Mathieu M-Gosselin <mathieumg@gmail.com>",
"David Murdoch <hello@davidmurdoch.com>",
"mx1700 <mx1700@gmail.com>",
"Michiel ter Reehorst <jm.ter.reehorst@jamiter.com>",
"Jonathan 'Wolf' Rentzsch <jwr.git@redshed.net>",
"John Roberts <jroberts@logitech.com>",
"Scott Sanders <scott@stonecobra.com>",
"Thomas Schaaf <schaaf@komola.de>",
"Fernando H. Silva <ferhensil@gmail.com>",
"Kei Son <heyacct@gmail.com>",
"David Taylor <david@zensatellite.com>",
"Antonio Touriño <atourino@gmail.com>",
"Oliver Wong <oliver@owiber.com>",
"Di Wu <dw323@cornell.edu>",
"Jesse Yang <jyyjcc@gmail.com>",
"Ian Young <ian.greenleaf@gmail.com>",
"jazzzz <jazzzz@gmail.com>",
"philpill <github@philpill.net>",
"rma4ok <rma4ok@gmail.com>",
"Petru Isfan <petru.isfan@gmail.com>"
],
"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"
}
}