forked from poolifier/poolifier
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
147 lines (147 loc) · 4.5 KB
/
package.json
File metadata and controls
147 lines (147 loc) · 4.5 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"$schema": "https://json.schemastore.org/package",
"name": "poolifier",
"version": "3.1.20",
"description": "Fast and small Node.js Worker_Threads and Cluster Worker Pool",
"license": "MIT",
"type": "module",
"main": "./lib/index.cjs",
"module": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.cjs",
"import": "./lib/index.mjs"
}
},
"scripts": {
"preinstall": "npx --yes only-allow pnpm",
"prepare": "node prepare.mjs",
"build": "rollup --config --environment BUILD:development",
"build:prod": "rollup --config",
"build:typedoc": "rollup --config --environment DOCUMENTATION,BUILD:development",
"build:analyze": "rollup --config --environment ANALYZE,BUILD:development",
"benchmark": "pnpm build && node --max-old-space-size=8192 --enable-source-maps benchmarks/internal/bench.mjs",
"benchmark:prod": "pnpm build:prod && node --max-old-space-size=8192 --enable-source-maps benchmarks/internal/bench.mjs",
"benchmark:debug": "pnpm build && node --max-old-space-size=8192 --enable-source-maps --inspect benchmarks/internal/bench.mjs",
"test": "pnpm build --environment SOURCEMAP:false && cross-env NODE_ENV=test c8 mocha 'tests/**/*.test.mjs'",
"test:debug": "pnpm build && cross-env NODE_ENV=test mocha --no-parallel --inspect 'tests/**/*.test.mjs'",
"coverage": "c8 report --reporter=lcov",
"coverage:html": "c8 report --reporter=html",
"format": "biome format . --write; eslint . --cache --fix",
"lint": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"lint:report": "eslint . --cache --format json --output-file reports/eslint.json",
"release": "release-it",
"typedoc": "node typedoc.mjs",
"prepublishOnly": "pnpm build:prod"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.6.0"
},
"volta": {
"node": "20.11.1",
"pnpm": "8.15.3"
},
"repository": {
"type": "git",
"url": "https://github.com/poolifier/poolifier.git"
},
"keywords": [
"nodejs",
"worker pool",
"thread pool",
"worker_threads",
"cluster",
"concurrency",
"performance",
"cpu",
"computing",
"scheduling",
"parallelism",
"eventloop"
],
"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"
}
],
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/poolifier"
},
{
"type": "github",
"url": "https://github.com/sponsors/poolifier"
}
],
"bugs": {
"url": "https://github.com/poolifier/poolifier/issues"
},
"homepage": "https://github.com/poolifier/poolifier#readme",
"files": [
"lib"
],
"pnpm": {
"overrides": {
"semver": "^7.5.3"
}
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@release-it/bumper": "^6.0.1",
"@release-it/keep-a-changelog": "^5.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"benchmark": "^2.1.4",
"c8": "^9.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-define-config": "^2.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.1.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-spellcheck": "^0.0.20",
"eslint-plugin-tsdoc": "^0.2.17",
"expect": "^29.7.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"microtime": "^3.1.1",
"mocha": "^10.3.0",
"mochawesome": "^7.1.3",
"prettier": "^3.2.5",
"release-it": "^17.0.5",
"rollup": "^4.11.0",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-command": "^1.1.3",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^6.1.0",
"sinon": "^17.0.1",
"typedoc": "^0.25.8",
"typescript": "~5.3.3"
}
}