-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.81 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.81 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"$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": "alessandroardizio94@gmail.com",
"url": "https://github.com/pioardi"
},
"contributors": [
{
"name": "Christopher Quadflieg",
"email": "chrissi92@hotmail.de",
"url": "https://github.com/Shinigami92"
},
{
"name": "Jérôme Benoit",
"email": "jerome.benoit@piment-noir.org",
"url": "https://github.com/jerome-benoit"
}
],
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
},
"volta": {
"node": "24.14.0",
"pnpm": "10.32.1"
},
"packageManager": "pnpm@10.32.1",
"type": "module",
"pnpm": {
"overrides": {
"minimatch@<10.2.1": ">=10.2.1"
}
},
"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.4.0",
"piscina": "5.1.4",
"poolifier": "5.3.2",
"tinypool": "2.1.0",
"worker-nodes": "2.7.0",
"workerpool": "10.0.1"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@eslint/js": "^9.39.4",
"eslint": "^9.39.4",
"eslint-plugin-jsdoc": "^62.7.1",
"eslint-plugin-perfectionist": "^5.6.0",
"husky": "^9.1.7",
"lint-staged": "^16.3.3",
"neostandard": "^0.13.0",
"prettier": "^3.8.1"
}
}