forked from mattpker/pm2-slack
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
52 lines (52 loc) · 1.16 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
{
"name": "pm2-discord",
"version": "0.1.2",
"description": "A PM2 module to emit events to discord",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/FranciscoG/pm2-discord"
},
"keywords": [
"pm2",
"discord"
],
"author": "Francisco <[email protected]> (https://github.com/FranciscoG)",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/FranciscoG/pm2-discord/blob/master/LICENSE"
}
],
"bugs": {
"url": "https://github.com/FranciscoG/pm2-discord/issues"
},
"homepage": "https://github.com/FranciscoG/pm2-discord",
"dependencies": {
"pm2": "^5.0.0",
"pmx": "^1.6.7",
"request": "^2.88.0",
"strip-ansi": "^7.0.0"
},
"config": {
"discord_url": null,
"process_name": null,
"log": true,
"error": false,
"kill": true,
"exception": true,
"restart": false,
"delete": false,
"stop": true,
"restart overlimit": true,
"exit": false,
"start": false,
"online": false,
"buffer": true,
"buffer_seconds": 1,
"queue_max": 100
}
}