-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
49 lines (49 loc) · 1.18 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
{
"name": "node-worker-threads-pool",
"version": "1.5.1",
"description": "Simple worker threads pool using Node's worker_threads module. Compatible with ES6+ Promise, Async/Await.",
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"scripts": {
"prepare": "husky install",
"build": "tsc",
"test": "jest --coverage",
"pretest": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SUCHMOKUO/node-worker-threads-pool.git"
},
"keywords": [
"nodejs",
"async",
"promise",
"worker_threads",
"worker",
"thread",
"pool",
"threadpool",
"multi threading",
"typescript"
],
"author": "mokuo",
"license": "MIT",
"bugs": {
"url": "https://github.com/SUCHMOKUO/node-worker-threads-pool/issues"
},
"homepage": "https://github.com/SUCHMOKUO/node-worker-threads-pool#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^14.17.2",
"husky": "^6.0.0",
"jest": "^27.0.4",
"prettier": "^2.3.1",
"prettier-plugin-organize-imports": "^2.1.0",
"pretty-quick": "^3.1.0",
"ts-jest": "^27.0.3",
"typescript": "^4.3.2"
}
}