-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.22 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.22 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
{
"name": "cluster-harakiri",
"version": "1.0.6",
"description": "Controls creation and removal of workers at a regular interval",
"main": "./lib/index.js",
"scripts": {
"test": "TEST_PORT=12345 HARAKIRI_WORKER_CONN_LIMIT=2 HARAKIRI_WORKER_TTL=30 HARAKIRI_WORKER_CHECK_INTERVAL=10 HARAKIRI_WORKER_CLOSE_TIMEOUT=3600 jest --silent --coverage --color",
"lint": "eslint --format node_modules/eslint-friendly-formatter .",
"lint:fix": "eslint --fix --format node_modules/eslint-friendly-formatter ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartfile/node-cluster-harakiri.git"
},
"keywords": [
"cluster"
],
"files": [
"lib/index.js",
"LICENSE",
"README.md"
],
"author": "Clifton Barnes <cbarnes@smartfile.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartfile/node-cluster-harakiri/issues"
},
"homepage": "https://github.com/smartfile/node-cluster-harakiri#readme",
"devDependencies": {
"axios": "^0.27.2",
"eslint": "^8.23.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-node": "^11.1.0",
"jest": "^29.0.2"
},
"dependencies": {
"debug": "^4.3.4"
}
}