forked from strongloop/node-foreman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 893 Bytes
/
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
{
"name": "foreman",
"version": "1.0.0",
"homepage": "http://strongloop.github.io/node-foreman/",
"description": "Node Implementation of Foreman",
"author": "StrongLoop, Inc.",
"license": "MIT",
"keywords": [
"foreman",
"upstart",
"commandline",
"env",
"Procfile"
],
"bin": {
"nf": "nf.js"
},
"scripts": {
"test": "tap test"
},
"dependencies": {
"commander": "~2.1.0",
"http-proxy": "~1.0.3",
"mu2": "~0.5.20",
"shell-quote": "~1.4.2"
},
"repository": {
"type": "git",
"url": "https://github.com/strongloop/node-foreman.git"
},
"bugs": {
"url": "https://github.com/strongloop/node-foreman/issues",
"email": "[email protected]"
},
"engines": {
"node": ">=0.6.9"
},
"preferGlobal": true,
"devDependencies": {
"tap": "~0.4.8",
"chai": "~1.9.1",
"rimraf": "~2.2.8"
}
}