-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 872 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
41
42
43
44
{
"name": "pm2-papertrail-logger",
"version": "2.0.0",
"author": "ImSkully",
"license": "LGPL-3.0-or-later",
"description": "A simple and efficient PM2 module that forwards logs to Papertrail.",
"main": "index.js",
"dependencies": {
"@pm2/io": "^6.0.0",
"pm2": "^5.4.1",
"winston": "^3.13.0",
"winston-syslog": "^2.7.0"
},
"config": {
"host": "",
"port": "",
"hostname": "",
"process-as-systems": false,
"blacklist": ""
},
"repository": {
"type": "git",
"url": "https://github.com/ImSkully/pm2-papertrail-logger.git"
},
"bugs": {
"url": "https://github.com/ImSkully/pm2-papertrail-logger/issues"
},
"keywords": [
"pm2",
"pm2-module",
"papertrail"
],
"apps": [
{
"env": {
"PM2_EXTRA_DISPLAY": "true"
},
"max_memory_restart": "200M",
"merge_logs": true,
"max_restarts": 2,
"script": "index.js"
}
]
}