-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.77 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
{
"$schema": "https://json.schemastore.org/package",
"name": "poolifier-benchmark-versus-other-worker-pools",
"version": "1.0.0",
"description": "This project contains benchmark for the most popular and used Node.js worker_threads/cluster worker pools implementations",
"author": {
"name": "Alessandro Pio Ardizio",
"email": "[email protected]",
"url": "https://github.com/pioardi"
},
"contributors": [
{
"name": "Christopher Quadflieg",
"email": "[email protected]",
"url": "https://github.com/Shinigami92"
},
{
"name": "Jérôme Benoit",
"email": "[email protected]",
"url": "https://github.com/jerome-benoit"
}
],
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
},
"volta": {
"node": "22.11.0",
"pnpm": "9.13.2"
},
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"prepare": "node prepare.mjs",
"format": "biome format . --write; eslint . --cache --fix",
"lint": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@bitair/concurrent.js": "0.8.2",
"nanothreads": "0.3.9",
"piscina": "4.7.0",
"poolifier": "4.4.5",
"tinypool": "1.0.2",
"worker-nodes": "2.7.0",
"workerpool": "9.2.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.15.0",
"eslint": "^9.15.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-jsdoc": "^50.5.0",
"eslint-plugin-perfectionist": "^3.9.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"neostandard": "^0.11.8",
"prettier": "^3.3.3"
}
}