-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.12 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
{
"name": "@florajs/cluster",
"version": "4.0.1",
"description": "Simple cluster manager module with status tracking for HTTP servers",
"main": "index.js",
"scripts": {
"test": "eslint . && mocha",
"lint": "eslint ."
},
"files": [
"index.js",
"lib/"
],
"types": "index.d.ts",
"pre-commit": "test",
"keywords": [
"florajs",
"cluster",
"process manager",
"zero downtime",
"status tracking"
],
"author": {
"name": "stock3 AG",
"email": "[email protected]"
},
"homepage": "https://github.com/florajs/cluster",
"license": "MIT",
"repository": "florajs/cluster",
"contributors": [
{
"name": "Mark Plomer",
"email": "[email protected]"
},
{
"name": "Nico Kaiser",
"email": "[email protected]"
}
],
"dependencies": {
"abstract-logging": "^2.0.1"
},
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^5.0.0",
"mocha": "^10.2.0",
"pre-commit": "^1.2.2",
"prettier": "^3.0.1"
},
"engines": {
"node": ">=16"
}
}