-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 996 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
30
31
32
33
34
35
36
37
38
39
40
{
"name": "pm2-monit-daemon",
"version": "0.4.0",
"description": "PM2 Remote Monitor Daemon Module",
"main": "index.js",
"dependencies": {
"pm2-axon": "^3.0.2",
"pm2-axon-rpc": "^0.4.5",
"pmx": "latest"
},
"devDependencies": {
"debug": "^2.6.8",
"eslint": "^4.1.1",
"eslint-config-guo": "^0.4.0"
},
"scripts": {
"lint": "eslint index.js lib --fix",
"pm2:u": "pm2 uninstall pm2-monit-daemon",
"pm2:i": "pm2 install .",
"pm2:set": "pm2 set pm2-monit-daemon:server 127.0.0.1:6969",
"debug": "npm run pm2:u && export DEBUG=PM2-Monit:* && npm run pm2:i && npm run pm2:set && pm2 logs"
},
"repository": {
"type": "git",
"url": "https://github.com:yourtion/pm2-monit-daemon.git"
},
"config": {
"workerInterval": 5,
"server": ""
},
"apps": [
{
"merge_logs": true,
"max_memory_restart": "100M",
"script": "index.js"
}
],
"author": "Yourtion <yourtion@gmail.com>",
"license": "MIT"
}