-
Notifications
You must be signed in to change notification settings - Fork 944
/
package.json
72 lines (72 loc) · 1.74 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
{
"name": "forever",
"preferGlobal": "true",
"description": "A simple CLI tool for ensuring that a given node script runs continuously (i.e. forever)",
"version": "4.0.3",
"author": "Charlie Robbins <charlie.robbins@gmail.com>",
"maintainers": [
"Igor Savin <iselwin@gmail.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/foreverjs/forever.git"
},
"keywords": [
"cli",
"fault tolerant",
"sysadmin",
"tools"
],
"dependencies": {
"async": "^1.5.2",
"cliff": "^0.1.10",
"clone": "^2.1.2",
"@colors/colors": "1.5.0",
"configstore": "4.0.0",
"eventemitter2": "6.4.4",
"flatiron": "~0.4.3",
"forever-monitor": "^3.0.3",
"mkdirp": "^0.5.5",
"nssocket": "^0.6.0",
"object-assign": "^4.1.1",
"prettyjson": "^1.2.2",
"shush": "^1.0.0",
"winston": "^3.4.0"
},
"devDependencies": {
"chai": "^4.2.0",
"cli-testlab": "^1.10.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"getopts": "2.3.0",
"mocha": "^6.2.2",
"moment": "^2.24.0",
"prettier": "^1.19.1",
"request": "2.88.2",
"vows": "0.7.x"
},
"bin": {
"forever": "./bin/forever"
},
"main": "./lib/forever",
"scripts": {
"lint": "eslint \"lib/**/*.js\" \"test/**/*.js\"",
"test": "npm run test:vows && npm run test:mocha",
"test:mocha": "mocha test/mocha/**/*.spec.js",
"test:vows": "vows test/**/*-test.js --dot-matrix -i",
"test:ci": "npm run lint && npm test",
"prettier": "prettier --write \"{lib,examples,test}/**/*.js\""
},
"engines": {
"node": ">=6"
},
"files": [
"LICENSE",
"CHANGELOG.md",
"README.md",
"bin/*",
"lib/*"
],
"license": "MIT"
}