-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.4 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": "worker-thread",
"description": "Worker Thread Pattern for Node.js",
"version": "1.1.0",
"ava": {
"files": [
"test/**/*.test.js"
]
},
"bugs": {
"url": "https://github.com/70-10/node-worker-thread/issues"
},
"dependencies": {
"co": "4.6.0",
"eventemitter2": "^4.1.2",
"is-generator-function": "1.0.6"
},
"devDependencies": {
"ava": "^0.22.0",
"eslint": "^4.6.1",
"eslint-config-prettier": "^2.4.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-prettier": "^2.2.0",
"husky": "^0.14.3",
"lint-staged": "^4.1.3",
"npm-run-all": "^4.1.1",
"nyc": "^11.2.1",
"prettier": "^1.7.0",
"rimraf": "^2.6.2"
},
"engines": {
"node": ">=4"
},
"files": [
"src"
],
"homepage": "https://github.com/70-10/node-worker-thread#readme",
"keywords": [],
"license": "MIT",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/70-10/node-worker-thread.git"
},
"scripts": {
"start": "node example/main.js",
"clean": "rimraf coverage .nyc_output",
"lint": "eslint --fix src test",
"report": "nyc report --reporter=html",
"test": "nyc ava",
"test:coverage": "run-s clean lint test report",
"precommit": "lint-staged",
"prepush": "ava"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
}
}