forked from isaacs/cluster-master
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.13 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.13 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
{
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
"name": "cluster-master",
"description": "A helper script for managing a cluster of node worker servers",
"version": "0.2.1",
"repository": {
"type": "git",
"url": "git://github.com/isaacs/cluster-master.git"
},
"main": "cluster-master.js",
"engines": {
"node": ">=8.12.0"
},
"license": "ISC",
"dependencies": {
"underscore": "^1.8.3"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-formatter-gitlab": "^1.0.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-mocha": "^5.2.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"lebab": "^3.1.0",
"mocha": "^5.2.0",
"mocha-jenkins-reporter": "^0.4.2",
"nyc": "^14.1.1",
"prettier": "^1.16.3",
"should": "^7.1.1",
"sinon": "^1.17.1"
},
"scripts": {
"test": "mocha ./test/*",
"coverage": "JUNIT_REPORT_PATH=./report/report.xml nyc --reporter text mocha --timeout 10000 --reporter mocha-jenkins-reporter",
"lint": "eslint ."
}
}