-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 863 Bytes
/
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
{
"name": "webhook-deploy",
"version": "1.0.0",
"description": "Simple webhook deploy script",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "pm2 start index.js --name webhook-deploy --restart-delay 10000 --time --log ./logs/server.log",
"status": "pm2 status",
"restart": "pm2 restart webhook-deploy",
"stop": "pm2 stop webhook-deploy",
"delete": "pm2 delete webhook-deploy",
"logs": "pm2 logs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mezrik/webhook-deploy.git"
},
"author": "Martin Petr",
"license": "ISC",
"bugs": {
"url": "https://github.com/Mezrik/webhook-deploy/issues"
},
"homepage": "https://github.com/Mezrik/webhook-deploy#readme",
"dependencies": {
"dotenv-extended": "^2.9.0",
"pm2": "^4.5.0"
}
}