forked from VeXell/pm2-autoscale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.1 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-autoscale",
"version": "1.0.3",
"description": "PM2 module to help dynamically scale applications based on utilization demand",
"main": "index.js",
"dependencies": {
"pm2": "^5.2.2",
"pmx": "beta",
"typescript": "^4.9.3"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"watch": "tsc -w -p tsconfig.json"
},
"apps": [
{
"merge_logs": true,
"max_memory_restart": "100M",
"script": "index.js"
}
],
"config": {
"average_worker_resources_over_seconds": 60,
"max_workers": -1,
"min_seconds_to_add_worker": 10,
"min_seconds_to_release_worker": 30,
"debug": false,
"release_cpu_threshold": 5,
"scale_cpu_threshold": 30
},
"devDependencies": {
"@types/node": "^18.11.18"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "https://github.com/VeXell/pm2-autoscale.git"
},
"author": "Viacheslav Volkov ([email protected])",
"license": "MIT",
"keywords": [
"PM2",
"Autoscale",
"Configuration",
"Scaling",
"Scale",
"Utilization",
"Module"
]
}