-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
47 lines (47 loc) · 1.31 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
{
"name": "worker-nodes",
"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": ">=11.7.0"
},
"scripts": {
"docs": "npx jsdoc-to-markdown -t docs-src/README.hbs lib/*.js > README.md",
"test": "eslint ./ && ava -c 1",
"test:watch": "ava --watch",
"lint": "eslint ./ --fix",
"benchmark": "cd benchmark; npm install; npm test;"
},
"contributors": [
"Krzysztof Kwiatkowski <kwiatkk1+npm@gmail.com>",
"Rafał Augustyniak <rafal.augustus@gmail.com>",
"Bartosz Gałek <bartosz@galek.com.pl>"
],
"license": "Apache-2.0",
"devDependencies": {
"ava": "^5.3.0",
"eslint": "^8.42.0",
"eslint-plugin-ava": "^14.0.0"
},
"types": "./index.d.ts",
"dependencies": {
"msgpack-lite": "^0.1.26"
},
"ava": {
"workerThreads": false
}
}