-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.14 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
46
{
"name": "worker-union",
"version": "2.2.0",
"description": "🤼♂️ Package that makes it easy and convenient to use native worker_threads module",
"engines": {
"node": ">=10.5.0"
},
"main": "src/WorkerPool.js",
"scripts": {
"start": "node --experimental-worker src/index.mjs",
"test": "echo \"no tests\"",
"eslint": "eslint ./src --ext .js,.mjs",
"eslint:fix": "eslint ./src --ext .js --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexTolmachev/node-worker-union.git"
},
"keywords": [
"multi-threading",
"multithreading",
"threads",
"workers",
"worker-pool",
"worker_threads",
"union",
"worker",
"nodejs",
"node",
"workerify"
],
"author": {
"name": "Alexander Tolmachev",
"email": "alextolmachevv@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/AlexTolmachev/node-worker-union/issues"
},
"homepage": "https://github.com/AlexTolmachev/node-worker-union#readme",
"devDependencies": {
"eslint": "5.13.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.16.0"
}
}