-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
55 lines (55 loc) · 1.21 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": "pm2-slack",
"version": "1.1.0",
"description": "A PM2 module to emit events to Slack",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/mattpker/pm2-slack"
},
"keywords": [
"pm2",
"slack"
],
"author": "Matt Atkinson <[email protected]> (https://github.com/mattpker)",
"contributors": [
"Martin Zaloudek (https://github.com/ma-zal)"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/mattpker/pm2-slack/blob/master/LICENSE"
}
],
"bugs": {
"url": "https://github.com/mattpker/pm2-slack/issues"
},
"homepage": "https://github.com/mattpker/pm2-slack",
"dependencies": {
"pm2": "^0.15.10",
"pmx": "^0.5.5",
"request": "^2.67.0"
},
"config": {
"slack_url": null,
"log": false,
"error": true,
"kill": true,
"exception": true,
"restart": false,
"reload": false,
"delete": false,
"stop": false,
"restart overlimit": true,
"exit": false,
"start": false,
"online": false,
"buffer": true,
"buffer_seconds": 2,
"queue_max": 100,
"buffer_max_seconds": 20
}
}