forked from Unitech/pm2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 3.04 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 3.04 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
{
"name": "pm2",
"preferGlobal": "true",
"version": "0.8.12",
"os" : [ "!win32" ],
"engines": {
"node": ">=0.10"
},
"directories": {
"bin" : "./bin",
"lib" : "./lib",
"example" : "./examples"
},
"author": {
"name": "Strzelewicz Alexandre",
"email": "as@unitech.io",
"url": "http://pm2.io"
},
"maintainers": [
"tknew <strzelewicz.alexandre@gmail.com",
"soyuka <soyuka@gmail.com>",
"Alex Kocharin <alex@kocharin.ru>",
"achingbrain <alex@achingbrain.net>"
],
"contributors": [
{
"name": "Alex Kocharin",
"email": "alex@kocharin.ru"
},
{
"name": "Soyuka",
"email": "soyuka@gmail.com"
},
{
"name": "Soyuka",
"email": "soyuka@gmail.com"
},
{
"name": "Xu Jingxin",
"email": "sailxjx@gmail.com"
},
{
"name": "Ben Postlethwaite",
"email": "post.ben.here@gmail.com"
},
{
"name": "Devo.ps",
"email": "contact@devo.ps"
},
{
"name": "Bret Copeland",
"email": "bret@atlantisflight.org"
},
{
"name": "John Hurliman",
"email": "jhurliman@jhurliman.org"
},
{
"name": "TruongSinh Tran-Nguyen",
"email": "i@truongsinh.pro"
}
],
"homepage": "https://github.com/Unitech/pm2",
"description": "Modern CLI process manager for Node apps with a builtin load-balancer",
"main": "index.js",
"scripts": {
"test": "bash ./test/cli.sh && bash ./test/json_file.sh && bash ./test/harmony.sh && bash ./test/reload.sh && bash ./test/right-exit-code.sh && bash ./test/log-reload.sh && bash ./test/gracefulReload.sh && bash ./test/cli2.sh && bash ./test/misc.sh && bash ./test/watchdog.sh && bash ./test/fork.sh && bash ./test/infinite_loop.sh && NODE_ENV=test ./node_modules/mocha/bin/mocha test",
"install" : "node scripts/install.js",
"update" : "node scripts/install.js"
},
"keywords": [
"cli",
"fault tolerant",
"sysadmin",
"tools",
"h24",
"pm2",
"harmony",
"node-pm2",
"production",
"vitalsigns",
"pm2.io",
"ghost",
"ghost production",
"monitoring",
"process manager",
"forever",
"keep process alive",
"process configuration",
"clustering",
"cluster cli",
"cluster",
"cron",
"devops",
"dev ops"
],
"bin": {
"pm2": "./bin/pm2"
},
"dependencies": {
"commander": "2.2.0",
"cli-table": "0.3.0",
"pm2-multimeter": "0.1.2",
"pm2-interface": "0.1.3",
"pm2-axon-rpc": "0.0.2",
"axon": "1.0.0",
"cron": "1.0.1",
"colors": "0.6.2",
"coffee-script": "1.7.0",
"eventemitter2": "0.4.13",
"debug": "*",
"async": "0.7.0",
"chokidar": "~0.8.2",
"json-stringify-safe" : "*",
"pidusage" : "0.0.4",
"nssocket" : "*"
},
"devDependencies": {
"mocha": "1.x",
"should": "3.x",
"better-assert": "*",
"axm" : "*"
},
"bugs" : {
"url" : "https://github.com/Unitech/pm2/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/Unitech/pm2.git"
},
"license": "AGPLv3"
}