-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.06 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
{
"name": "easy-node-cluster",
"version": "1.0.0",
"description": "",
"main": "index.js",
"bin": {
"easy-node-cluster": "./bin/easy-node-cluster"
},
"files": [
"lib",
"bin"
],
"scripts": {
"test": "npm run build && mocha --timeout 10000 \"./tests/**/*.test.js\" --exit ",
"build": "rimraf ./lib && tsc "
},
"author": "[email protected]",
"license": "ISC",
"devDependencies": {
"@types/node": "^12.7.12",
"chai": "^4.2.0",
"chalk": "^2.4.2",
"easy-node-logger": "github:chenkang084/easy-node-logger#master",
"easy-node-utils": "github:chenkang084/easy-node-utils#master",
"husky": "^3.0.9",
"mocha": "^6.2.1",
"rimraf": "^3.0.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.4"
},
"dependencies": {
"commander": "^3.0.2",
"express": "^4.17.1",
"forever": "^1.0.0",
"moment": "^2.24.0",
"optimist": "^0.6.1",
"pidusage": "^2.0.17",
"runscript": "^1.4.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && git add .",
"pre-push": ""
}
}
}