forked from allegro/node-worker-nodes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.15 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.15 KB
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
{
"name": "worker-nodes",
"version": "1.6.1",
"description": "A library to run cpu-intensive tasks without blocking the event loop.",
"keywords": [
"workers",
"pool",
"farm",
"cluster"
],
"repository": {
"type": "git",
"url": "git://github.com/allegro/node-worker-nodes.git"
},
"bugs": {
"url": "https://github.com/allegro/node-worker-nodes/issues"
},
"homepage": "https://github.com/allegro/node-worker-nodes",
"main": "./lib/index.js",
"engines": {
"node": ">=6.6.0"
},
"scripts": {
"docs": "jsdoc2md -l off -t docs-src/Readme.hbs lib/*.js > Readme.md; echo",
"test": "mocha --trace-warnings -r tests/utils/setup.js {lib,tests}/**/*.spec.js",
"benchmark": "cd benchmark; npm install; npm test;"
},
"contributors": [
"Krzysztof Kwiatkowski <kwiatkk1+npm@gmail.com>"
],
"license": "Apache-2.0",
"devDependencies": {
"chai": "^3.5.0",
"co-mocha": "^1.1.3",
"is-running": "^2.1.0",
"jsdoc-to-markdown": "^2.0.1",
"lodash.uniq": "^4.5.0",
"mocha": "^3.4.2",
"sinon": "^1.17.6"
},
"dependencies": {
"msgpack-lite": "^0.1.26"
},
"types": "./index.d.ts"
}