-
Notifications
You must be signed in to change notification settings - Fork 113
/
package.json
72 lines (72 loc) · 2.23 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "piscina",
"version": "5.0.0-alpha.0",
"description": "A fast, efficient Node.js Worker Thread Pool implementation",
"main": "./dist/main.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/esm-wrapper.mjs",
"require": "./dist/main.js"
},
"engines": {
"node": ">=18.x"
},
"scripts": {
"build": "tsc && gen-esm-wrapper . dist/esm-wrapper.mjs",
"lint": "eslint",
"test": "c8 tap",
"test:ci": "npm run lint && npm run build && npm run test:coverage",
"test:coverage": "c8 --reporter=lcov tap --cov",
"prepack": "npm run build",
"benchmark": "npm run bench:queue && npm run benchmark:piscina",
"benchmark:piscina": "npm run benchmark:default &&npm run benchmark:queue:fixed && npm run benchmark:default:comparison",
"benchmark:default": "node benchmark/simple-benchmark.js",
"benchmark:default:async": "node benchmark/simple-benchmark.js",
"benchmark:default:comparison": "node benchmark/piscina-queue-comparison.js",
"benchmark:queue": "npm run benchmark:queue-comparison",
"benchmark:queue:fixed": "node benchmark/simple-benchmark-fixed-queue.js",
"benchmark:queue:comparison": "node benchmark/queue-comparison.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/piscinajs/piscina.git"
},
"keywords": [
"fast",
"worker threads",
"thread pool",
"wade wilson"
],
"author": "James M Snell <jasnell@gmail.com>",
"contributors": [
"Anna Henningsen <anna@addaleax.net>",
"Matteo Collina <matteo.collina@gmail.com>",
"Carlos Fuentes <me@metcoder.dev>"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^22.4.1",
"abort-controller": "^3.0.0",
"c8": "^10.1.2",
"concat-stream": "^2.0.0",
"eslint": "^9.16.0",
"gen-esm-wrapper": "^1.1.1",
"neostandard": "^0.12.0",
"tap": "^16.3.7",
"tinybench": "^3.0.0",
"ts-node": "^10.9.2",
"typescript": "5.7.2"
},
"optionalDependencies": {
"@napi-rs/nice": "^1.0.1"
},
"bugs": {
"url": "https://github.com/piscinajs/piscina/issues"
},
"homepage": "https://github.com/piscinajs/piscina#readme",
"directories": {
"example": "examples",
"test": "test"
}
}