-
Notifications
You must be signed in to change notification settings - Fork 178
/
package.json
77 lines (77 loc) · 1.69 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
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
{
"name": "forever-monitor",
"description": "Core forever process monitor",
"version": "3.0.3",
"author": "Charlie Robbins <charlie.robbins@gmail.com>",
"contributors": [
{
"name": "Charlie Robbins",
"email": "charlie@nodejitsu.com"
},
{
"name": "Fedor Indutny",
"email": "fedor.indutny@gmail.com"
},
{
"name": "James Halliday",
"email": "mail@substack.net"
},
{
"name": "Bradley Meck",
"email": "bradley@nodejitsu.com"
},
{
"name": "Dominic Tarr",
"email": "dominic@nodejitsu.com"
},
{
"name": "Maciej Małecki",
"email": "maciej@nodejitsu.com"
},
{
"name": "Igor Savin",
"email": "kibertoad@gmail.com"
}
],
"main": "./lib/index.js",
"scripts": {
"lint": "eslint \"lib/**/*.js\" \"test/**/*.js\" \"examples/**/*.js\"",
"test": "vows test/**/*-test.js --dot-matrix -i",
"test:ci": "npm run lint && npm run test",
"prettier": "prettier --write \"{lib,examples,test}/**/*.js\""
},
"repository": {
"type": "git",
"url": "http://github.com/foreversd/forever-monitor.git"
},
"keywords": [
"fault tolerant",
"sysadmin",
"tools"
],
"dependencies": {
"async": "^1.5.2",
"chokidar": "^2.1.8",
"eventemitter2": "^6.4.3",
"minimatch": "^3.0.4",
"ps-tree": "^1.2.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-config-prettier": "^6.11.0",
"prettier": "^1.19.1",
"semver": "5.7.1",
"vows": "0.7.0",
"yargs": "^3.32.0"
},
"engines": {
"node": ">=6"
},
"files": [
"LICENSE",
"README.md",
"lib/*"
],
"license": "MIT"
}