-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1021 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-logrotate-imp",
"version": "0.6.0",
"description": "pm2 module - configurable log rotator",
"main": "app.js",
"dependencies": {
"bluebird": "^3.3.4",
"bower": "^1.7.9",
"filesize-parser": "^1.3.2",
"moment": "^2.12.0",
"pm2": "^1.1.1",
"pmx": "^0.6.1",
"rolex": "0.0.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Marco Braga",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bragma/pm2-logrotate-imp.git"
},
"bugs": {
"url": "https://github.com/bragma/pm2-logrotate-imp/issues"
},
"homepage": "https://github.com/bragma/pm2-logrotate-imp",
"apps": [
{
"merge_logs": true,
"max_memory_restart": "200M",
"script": "app.js"
}
],
"config": {
"interval_unit": "d",
"interval": "1",
"max_size": "10M",
"retain": "7",
"date_mode": "system",
"date_format": "YYYY-MM-DD_HH-mm-ss",
"rotation_mode": "reload"
}
}