forked from strongloop/node-foreman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.01 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
{
"name": "foreman",
"version": "2.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"
},
"files": [
"forward.js",
"nf.js",
"proxy.js",
"lib/"
],
"scripts": {
"pretest": "jshint .",
"test": "tap test/*.test.*"
},
"dependencies": {
"commander": "~2.9.0",
"http-proxy": "~1.11.1",
"mustache": "^2.2.1",
"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": {
"chai": "~1.9.1",
"jshint": "^2.6.3",
"rimraf": "~2.2.8",
"tap": "^0.7.1"
}
}