-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Expand file tree
/
Copy pathpackage.json
More file actions
164 lines (164 loc) · 3.63 KB
/
Copy pathpackage.json
File metadata and controls
164 lines (164 loc) · 3.63 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
{
"name": "pm2",
"preferGlobal": true,
"version": "7.0.3",
"engines": {
"node": ">=18.0.0"
},
"directories": {
"bin": "./bin",
"lib": "./lib",
"example": "./examples"
},
"author": {
"name": "Strzelewicz Alexandre",
"email": "alex@edgecraft.io <Pour ce Nouveau Monde>",
"url": "https://pm2.io"
},
"maintainers": [
{
"name": "Alexandre Strzelewicz",
"email": "alexandre@pm2.io"
}
],
"contributors": [
"Mathilde Tuffier",
"Antoine Bluchet",
"Alex Kocharin",
"Antoine Bluchet",
"Subhash Burramsetty",
"Valentin Marchaud",
"Valentin Touffet",
"Florian Hermouet-Joscht",
"Vincent Vallet",
"Joni Shkurti",
"Jun Tjatse",
"Xu Jingxin",
"Ben Postlethwaite",
"Devo.ps",
"Bret Copeland",
"John Hurliman",
"TruongSinh Tran-Nguyen",
"Michael Hueuberger",
"Chris Wiggins"
],
"homepage": "http://pm2.keymetrics.io/",
"description": "Production process manager for Node.JS applications with a built-in load balancer.",
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"test:unit": "bash test/unit.sh",
"test:e2e": "bash test/e2e.sh",
"test": "bash test/unit.sh && bash test/e2e.sh",
"test:parallel": "bash test/docker-parallel.sh",
"test:bpm": "mocha 'modules/pm2-io-bpm/test/**/*.spec.js' --exit --timeout 10000",
"test:axon-rpc": "mocha 'modules/pm2-axon-rpc/test/' --reporter spec --exit",
"test:axon": "bash modules/pm2-axon/test/run modules/pm2-axon/test/test.*.js",
"test:io-agent": "mocha 'modules/pm2-io-agent/test/units/*.mocha.js' --reporter spec --exit",
"test:windows": "bash test/windows.sh"
},
"keywords": [
"cli",
"fault tolerant",
"sysadmin",
"tools",
"pm2",
"logs",
"log",
"json",
"express",
"hapi",
"kraken",
"reload",
"load balancer",
"lb",
"load-balancer",
"kubernetes",
"k8s",
"pm2-docker",
"runtime",
"source maps",
"graceful",
"microservice",
"programmatic",
"harmony",
"node-pm2",
"production",
"keymetrics",
"node.js monitoring",
"strong-pm",
"deploy",
"deployment",
"daemon",
"supervisor",
"supervisord",
"nodemon",
"pm2.io",
"ghost",
"ghost production",
"monitoring",
"keymetrics",
"process manager",
"forever",
"profiling",
"probes",
"apm",
"container",
"forever-monitor",
"keep process alive",
"process configuration",
"clustering",
"cluster cli",
"cluster",
"docker",
"cron",
"devops",
"dev ops"
],
"bin": {
"pm2": "bin/pm2",
"pm2-dev": "bin/pm2-dev",
"pm2-docker": "bin/pm2-docker",
"pm2-runtime": "bin/pm2-runtime"
},
"dependencies": {
"@pm2/blessed": "0.1.81",
"@pm2/js-api": "0.8.1",
"@pm2/pm2-version-check": "1.0.4",
"amp": "0.3.1",
"amp-message": "0.1.2",
"ansis": "4.0.0-node10",
"async": "3.2.6",
"chokidar": "3.6.0",
"cli-tableau": "2.0.1",
"commander": "2.15.1",
"croner": "4.1.97",
"dayjs": "1.11.15",
"debug": "4.4.3",
"eventemitter2": "6.4.9",
"fast-json-patch": "3.1.1",
"js-yaml": "4.3.0",
"pidusage": "4.0.1",
"pm2-deploy": "1.0.2",
"proxy-agent": "6.5.0",
"semver": "7.7.2",
"tx2": "1.0.5",
"ws": "8.21.0"
},
"overrides": {
"debug": "4.4.3"
},
"devDependencies": {
"express": "^4.21.0",
"mocha": "^11.7.0",
"should": "^13.2.3"
},
"bugs": {
"url": "https://github.com/Unitech/pm2/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/Unitech/pm2.git"
},
"license": "AGPL-3.0"
}