-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.76 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "workestrator",
"version": "1.0.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines" : {
"node" : ">= 8"
},
"scripts": {
"lint": "tslint -p .",
"test": "mocha test/*.ts",
"posttest": "npm run lint",
"coverage": "nyc npm test",
"coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls",
"prebuild": "rm -rf dist/*",
"build": "tsc",
"docs": "rm -rf docs/* && typedoc --out docs lib && touch docs/.nojekyll",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yaty/workestrator.git"
},
"keywords": [
"node",
"pool",
"farm",
"worker",
"process",
"fork",
"cluster"
],
"author": "Hugo Da Roit <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Yaty/workestrator/issues"
},
"homepage": "https://github.com/Yaty/workestrator",
"devDependencies": {
"@types/cbor": "^2.0.0",
"@types/chai": "^4.1.4",
"@types/debug": "0.0.31",
"@types/mocha": "^5.2.5",
"@types/node": "^10.5.3",
"@types/sinon": "^5.0.3",
"@types/sinon-chai": "^3.2.0",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"sinon": "^6.3.5",
"sinon-chai": "^3.2.0",
"ts-node": "^7.0.0",
"tslint": "^5.11.0",
"tslint-no-unused-expression-chai": "^0.1.3",
"typedoc": "^0.13.0",
"typescript": "^3.1.1"
},
"dependencies": {
"cbor": "^4.1.3",
"debug": "^4.0.1"
},
"nyc": {
"include": [
"lib/**/*.ts"
],
"extension": [
".ts"
],
"reporter": [
"text",
"text-summary",
"html"
],
"require": [
"ts-node/register"
]
}
}