-
Notifications
You must be signed in to change notification settings - Fork 119
/
package.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": "3.0.1",
"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.15.1",
"http-proxy": "^1.17.0",
"mustache": "^2.2.1",
"shell-quote": "^1.6.1"
},
"repository": {
"type": "git",
"url": "https://github.com/strongloop/node-foreman.git"
},
"bugs": {
"url": "https://github.com/strongloop/node-foreman/issues",
"email": "callback@strongloop.com"
},
"engines": {
"node": ">=6"
},
"preferGlobal": true,
"devDependencies": {
"chai": "~1.9.1",
"jshint": "^2.6.3",
"rimraf": "~2.2.8",
"tap": "^0.7.1"
}
}