-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathpackage.json
55 lines (55 loc) · 1.33 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
{
"name": "pod",
"version": "0.9.1",
"preferGlobal": true,
"author": {
"name": "Evan You",
"email": "[email protected]"
},
"dependencies": {
"pm2": "^2.4.5",
"parse-github-url": "^1.0.0",
"colors": "^1.1.2",
"async": "^2.3.0",
"serve-favicon":"^2.4.2",
"serve-static":"^1.12.1",
"mkdirp": "^0.5.1",
"body-parser": "^1.17.1",
"cli-table": "^0.3.1",
"basic-auth":"^1.1.0",
"express": "^4.15.2",
"ejs": "^2.5.6",
"debug": "^2.6.3"
},
"devDependencies": {
"jscoverage": "^0.6.0",
"mocha": "^3.2.0",
"request": "^2.81.0"
},
"keywords": [
"cli",
"deployment",
"sysadmin",
"tools"
],
"repository": {
"type": "git",
"url": "http://github.com/yyx990803/pod.git"
},
"bin": {
"pod": "./bin/pod",
"pm2": "./node_modules/pm2/bin/pm2"
},
"engines": {
"node": ">= 0.8.x"
},
"main": "lib/api.js",
"description": "Super simple Node.js deployment tool",
"readme": "Pod simplifies the workflow of setting up, updating and managing multiple Node.js apps on a single Linux server.",
"readmeFilename": "README.md",
"scripts": {
"api": "mocha test/api.js --reporter spec --slow 1250",
"cli": "bash test/cli.sh",
"test": "mocha test/api.js -r jscoverage -R spec --slow 1250 --timeout 5000 && bash test/cli.sh"
}
}