-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.64 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
{
"name": "workers-cluster",
"version": "0.1.2",
"description": "start and stop workers cluster easy",
"main": "build/index.js",
"types": "build/index.d.ts",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"build": "npm run lint && tsc -p ./tsconfig.build.json",
"build-n-test": "npm run build && npm t",
"clear": "rm -rf ./build",
"dev": "npm run clear && npm run build && nodemon",
"lint": "tslint -p ./ -c ./tslint.json --fix",
"lint-n-test": "npm run lint && npm run test",
"prepublishOnly": "npm run clear && npm run build-n-test",
"preversion": "npm run clear && npm run build-n-test",
"test": "ts-node test/runner.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iamolegga/workers-cluster.git"
},
"keywords": [
"worker",
"workers",
"cluster",
"graceful",
"shutdown"
],
"author": "Oleg Repin <iamolegga@gmail.com> (https://github.com/iamolegga)",
"license": "MIT",
"bugs": {
"url": "https://github.com/iamolegga/workers-cluster/issues"
},
"homepage": "https://github.com/iamolegga/workers-cluster#readme",
"devDependencies": {
"@types/debug": "0.0.30",
"@types/node": "^10.5.2",
"colors": "^1.3.2",
"nodemon": "^1.18.4",
"prettier": "^1.13.7",
"ts-node": "^7.0.1",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"tslint-microsoft-contrib": "^5.0.3",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^2.9.2"
},
"dependencies": {
"debug": "^3.1.0"
},
"nodemonConfig": {
"exec": "npm run lint-n-test",
"ext": "ts",
"watch": [
"build",
"test"
]
}
}