-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.24 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
{
"name": "thread-puddle",
"description": "Turn any module into a worker thread",
"version": "0.4.0",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "[email protected]:PortBlueSky/thread-puddle.git"
},
"author": "Sebastian Herrlinger <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/debug": "4.1.7",
"@types/jest": "29.1.1",
"@types/node": "18.8.0",
"@typescript-eslint/parser": "5.38.1",
"eslint": "8.24.0",
"jest": "29.1.2",
"standard": "17.0.0",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"scripts": {
"test": "jest",
"test:gc": "node --max-old-space-size=192 ./node_modules/.bin/jest --config=jest.gc.config.json src/gc.spec.ts",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"build": "tsc",
"prepack": "yarn build"
},
"dependencies": {
"debug": "4.3.4"
},
"peerDependencies": {
"ts-node": "^8.8.2"
},
"peerDependenciesMeta": {
"ts-node": {
"optional": true
}
},
"engines": {
"node": ">=14.17.0"
},
"engineStrict": true,
"keywords": [
"thread",
"pool",
"thread-pool",
"worker",
"worker-pool",
"proxy object",
"queue"
]
}