This repository has been archived by the owner on Jan 28, 2020. It is now read-only.
forked from yyx990803/pod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.69 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "pod",
"version": "0.9.1",
"preferGlobal": true,
"author": {
"name": "Evan You",
"email": "[email protected]"
},
"dependencies": {
"async": "^3.0.1",
"await-exec": "^0.1.2",
"basic-auth": "^2.0.1",
"bluebird": "^3.5.3",
"body-parser": "^1.17.1",
"cli-table": "^0.3.1",
"colors": "^1.1.2",
"cookie-session": "^2.0.0-beta.3",
"debug": "^4.1.1",
"dotenv": "^8.0.0",
"ejs": "^3.0.1",
"express": "^4.15.2",
"express-ws": "^4.0.0",
"mkdirp": "^0.5.1",
"morgan": "^1.9.1",
"node-pty": "^0.9.0",
"parse-github-url": "^1.0.0",
"passport": "^0.4.0",
"passport-discord": "^0.1.3",
"pm2": "^4.0.0",
"serve-favicon": "^2.4.2",
"serve-static": "^1.12.1",
"xterm": "^4.0.2"
},
"devDependencies": {
"eslint": "^6.0.1",
"jscoverage": "^0.6.0",
"mocha": "^6.1.4",
"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"
}
}