2 "$schema": "https://json.schemastore.org/package",
5 "description": "Fast and small Node.js Worker_Threads and Cluster Worker Pool",
7 "main": "./lib/index.js",
10 "types": "./lib/index.d.ts",
11 "require": "./lib/index.js",
12 "import": "./lib/index.mjs"
16 "preinstall": "npx --yes only-allow pnpm",
17 "prepare": "node prepare.js",
18 "build": "rollup --config --environment BUILD:development",
19 "build:analyze": "rollup --config --environment ANALYZE,BUILD:development",
20 "build:typedoc": "rollup --config --environment DOCUMENTATION,BUILD:development",
21 "build:prod": "rollup --config",
22 "benchmark": "pnpm build && node -r source-map-support/register benchmarks/internal/bench.mjs",
23 "benchmark:debug": "pnpm build && node -r source-map-support/register --inspect benchmarks/internal/bench.mjs",
24 "benchmark:prod": "pnpm build:prod && node benchmarks/internal/bench.mjs",
25 "test": "pnpm build && c8 mocha 'tests/**/*.test.js'",
26 "test:debug": "pnpm build && mocha --no-parallel --inspect 'tests/**/*.test.js'",
27 "coverage": "c8 report --reporter=lcov",
28 "coverage:html": "c8 report --reporter=html",
29 "format": "biome format . --write; ts-standard . --fix",
30 "lint": "eslint . --cache",
31 "lint:fix": "eslint . --cache --fix",
32 "lint:report": "eslint . --cache --format json --output-file reports/eslint.json",
33 "release": "release-it",
34 "typedoc": "node typedoc.mjs",
35 "prepublishOnly": "pnpm build:prod"
38 "globals": ["describe", "it", "before", "after", "beforeEach", "afterEach"]
50 "url": "https://github.com/poolifier/poolifier.git"
67 "name": "Alessandro Pio Ardizio",
68 "email": "alessandroardizio94@gmail.com",
69 "url": "https://github.com/pioardi"
73 "name": "Christopher Quadflieg",
74 "email": "chrissi92@hotmail.de",
75 "url": "https://github.com/Shinigami92"
78 "name": "Jérôme Benoit",
79 "email": "jerome.benoit@piment-noir.org",
80 "url": "https://github.com/jerome-benoit"
85 "type": "opencollective",
86 "url": "https://opencollective.com/poolifier"
90 "url": "https://github.com/sponsors/poolifier"
94 "url": "https://github.com/poolifier/poolifier/issues"
96 "homepage": "https://github.com/poolifier/poolifier#readme",
104 "@biomejs/biome": "^1.2.2",
105 "@commitlint/cli": "^17.7.1",
106 "@commitlint/config-conventional": "^17.7.0",
107 "@release-it/bumper": "^5.1.0",
108 "@release-it/keep-a-changelog": "^4.0.0",
109 "@rollup/plugin-terser": "^0.4.3",
110 "@rollup/plugin-typescript": "^11.1.4",
111 "@types/node": "^20.6.5",
112 "@typescript-eslint/eslint-plugin": "^6.7.2",
113 "@typescript-eslint/parser": "^6.7.2",
114 "benchmark": "^2.1.4",
117 "eslint-config-standard": "^17.1.0",
118 "eslint-config-standard-with-typescript": "^39.1.0",
119 "eslint-define-config": "^1.23.0",
120 "eslint-import-resolver-typescript": "^3.6.1",
121 "eslint-plugin-import": "^2.28.1",
122 "eslint-plugin-jsdoc": "^46.8.2",
123 "eslint-plugin-n": "^16.1.0",
124 "eslint-plugin-promise": "^6.1.1",
125 "eslint-plugin-spellcheck": "^0.0.20",
126 "eslint-plugin-tsdoc": "^0.2.17",
129 "lint-staged": "^14.0.1",
130 "microtime": "^3.1.1",
132 "mochawesome": "^7.1.3",
133 "prettier": "^3.0.3",
134 "release-it": "^16.2.0",
136 "rollup-plugin-analyzer": "^4.0.0",
137 "rollup-plugin-command": "^1.1.3",
138 "rollup-plugin-delete": "^2.0.0",
139 "rollup-plugin-dts": "^6.0.2",
141 "source-map-support": "^0.5.21",
142 "ts-standard": "^12.0.2",
143 "typedoc": "^0.25.1",
144 "typescript": "~5.2.2"