forked from mattpker/pm2-slack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.15 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
{
"name": "pm2-slack-plus",
"version": "2.3.4",
"description": "A PM2 module to emit events to Slack and more",
"apps": [
{
"script": "index.js",
"merge_logs": true,
"max_memory_restart": "200M"
}
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/kulak91/pm2-slack-plus"
},
"keywords": [
"pm2",
"slack",
"plus"
],
"license": "MIT",
"dependencies": {
"@slack/bolt": "^3.12.1",
"node-fetch": "2.6.7",
"pm2": "^0.15.10",
"pmx": "^0.5.5"
},
"config": {
"slack_url": null,
"log": true,
"error": true,
"kill": true,
"exception": false,
"restart": false,
"reload": true,
"delete": false,
"stop": false,
"restart overlimit": true,
"exit": true,
"start": true,
"online": true,
"buffer": true,
"buffer_seconds": 2,
"queue_max": 100,
"buffer_max_seconds": 20,
"SLACK_SIGNING_SECRET": "",
"SLACK_BOT_TOKEN": "",
"SLACK_APP_TOKEN": "",
"SLACK_PORT": "",
"SLACK_ADMIN_USERS": "U045UMM99FC U044B66LTUZ",
"LOGS_PATH": ""
}
}