-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 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
{
"name": "run-time",
"version": "1.2.8",
"description": "generate runtime configuration for node.js apps.",
"main": "index.js",
"bin": {
"runtime": "./index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "cp index-init.js runtime-init.js && cp index-add.js runtime-add.js && cp index-remove.js runtime-remove.js && cp index-list.js runtime-list.js"
},
"repository": {
"type": "git",
"url": "https://github.com/intesso/run-time.git"
},
"keywords": [
"production",
"server",
"runtime",
"nginx",
"upstart",
"forever"
],
"author": "Andi Neck",
"license": "MIT",
"bugs": {
"url": "https://github.com/intesso/run-time/issues"
},
"homepage": "https://github.com/intesso/run-time",
"dependencies": {
"cli-table": "^0.3.1",
"commander": "^2.8.1",
"debug": "^2.2.0",
"defaults": "^1.0.2",
"ejs": "^3.1.8",
"minimist": "^1.1.2",
"path-is-absolute": "^1.0.0",
"shelljs": "^0.8.5"
}
}