build(deps-dev): apply updates
[poolifier.git] / package.json
CommitLineData
6dc67cda 1{
4f19da60 2 "$schema": "https://json.schemastore.org/package",
5648b9ca 3 "name": "poolifier",
b47306a3 4 "version": "2.6.42",
3eed0bf4 5 "description": "Fast and small Node.js Worker_Threads and Cluster Worker Pool",
479b44a7 6 "license": "MIT",
6abad580 7 "main": "./lib/index.js",
fe18768d
JB
8 "exports": {
9 ".": {
9606b474 10 "types": "./lib/index.d.ts",
6abad580
JB
11 "require": "./lib/index.js",
12 "import": "./lib/index.mjs"
fe18768d
JB
13 }
14 },
6dc67cda 15 "scripts": {
ebfea361 16 "preinstall": "npx --yes only-allow pnpm",
86092b19 17 "prepare": "node prepare.js",
f4162974 18 "build": "rollup --config --environment BUILD:development",
9dc351aa
JB
19 "build:analyze": "rollup --config --environment ANALYZE,BUILD:development",
20 "build:typedoc": "rollup --config --environment DOCUMENTATION,BUILD:development",
f4162974 21 "build:prod": "rollup --config",
8a970421
JB
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",
a31ef7da 24 "benchmark:prod": "pnpm build:prod && node benchmarks/internal/bench.mjs",
bb8ed27c
JB
25 "test": "pnpm build && c8 mocha 'tests/**/*.test.js'",
26 "test:debug": "pnpm build && mocha --no-parallel --inspect 'tests/**/*.test.js'",
0fd86768
JB
27 "coverage": "c8 report --reporter=lcov",
28 "coverage:html": "c8 report --reporter=html",
facb41d7 29 "format": "biome format . --write; ts-standard . --fix",
e99dbb69
JB
30 "lint": "eslint . --cache",
31 "lint:fix": "eslint . --cache --fix",
7d82d90e 32 "lint:report": "eslint . --cache --format json --output-file reports/eslint.json",
05a66b11 33 "release": "release-it",
2ab81545 34 "typedoc": "node typedoc.mjs",
bb8ed27c 35 "prepublishOnly": "pnpm build:prod"
6dc67cda 36 },
78cea37e 37 "ts-standard": {
ebca2afa
JB
38 "globals": [
39 "describe",
40 "it",
41 "before",
42 "after",
43 "beforeEach",
44 "afterEach"
45 ]
78cea37e
JB
46 },
47 "engines": {
9e45c2c4 48 "node": ">=16.14.0",
0fb30db7 49 "pnpm": ">=8.6.0"
78cea37e 50 },
bc3227d8 51 "volta": {
d09e0bdb 52 "node": "20.6.0",
921abad5 53 "pnpm": "8.7.4"
bc3227d8 54 },
6dc67cda 55 "repository": {
56 "type": "git",
6ccc1262 57 "url": "git+https://github.com/poolifier/poolifier.git"
6dc67cda 58 },
59 "keywords": [
66ce9e2d
JB
60 "nodejs",
61 "worker pool",
62 "thread pool",
2fbe1783 63 "worker_threads",
660940b0 64 "cluster",
31b90205 65 "concurrency",
6dc67cda 66 "performance",
67 "cpu",
973cde26 68 "computing",
66ce9e2d
JB
69 "scheduling",
70 "parallelism",
71 "eventloop"
6dc67cda 72 ],
c613e813
JB
73 "author": {
74 "name": "Alessandro Pio Ardizio",
75 "email": "alessandroardizio94@gmail.com",
76 "url": "https://github.com/pioardi"
77 },
7e4f7b97 78 "contributors": [
79 {
80 "name": "Christopher Quadflieg",
81 "email": "chrissi92@hotmail.de",
82 "url": "https://github.com/Shinigami92"
83 },
84 {
818f2180 85 "name": "Jérôme Benoit",
7c638181 86 "email": "jerome.benoit@piment-noir.org",
7e4f7b97 87 "url": "https://github.com/jerome-benoit"
88 }
89 ],
479b44a7
JB
90 "funding": [
91 {
92 "type": "opencollective",
93 "url": "https://opencollective.com/poolifier"
09bf56a0
JB
94 },
95 {
96 "type": "github",
97 "url": "https://github.com/sponsors/poolifier"
479b44a7
JB
98 }
99 ],
6dc67cda 100 "bugs": {
6ccc1262 101 "url": "https://github.com/poolifier/poolifier/issues"
6dc67cda 102 },
6ccc1262 103 "homepage": "https://github.com/poolifier/poolifier#readme",
ebca2afa
JB
104 "files": [
105 "lib"
106 ],
c6bcaac6
JB
107 "pnpm": {
108 "overrides": {
109 "semver": "^7.5.3"
110 }
111 },
973cde26 112 "devDependencies": {
facb41d7 113 "@biomejs/biome": "1.1.2",
006b98fe 114 "@commitlint/cli": "^17.7.1",
214804c3 115 "@commitlint/config-conventional": "^17.7.0",
7d1ac235 116 "@release-it/bumper": "^5.1.0",
b80e10df 117 "@release-it/keep-a-changelog": "^4.0.0",
4745ba4a 118 "@rollup/plugin-terser": "^0.4.3",
1aacf52a 119 "@rollup/plugin-typescript": "^11.1.3",
57a29f75 120 "@types/node": "^20.5.9",
c8284c4c
JB
121 "@typescript-eslint/eslint-plugin": "^6.6.0",
122 "@typescript-eslint/parser": "^6.6.0",
ca6c7d70 123 "benny": "^3.7.1",
21554946 124 "c8": "^8.0.1",
0b3d8cdc 125 "eslint": "^8.48.0",
458509ad 126 "eslint-config-standard": "^17.1.0",
712815ee 127 "eslint-config-standard-with-typescript": "^39.0.0",
0223b392 128 "eslint-define-config": "^1.23.0",
214804c3 129 "eslint-import-resolver-typescript": "^3.6.0",
a6d60641 130 "eslint-plugin-import": "^2.28.1",
d8547901 131 "eslint-plugin-jsdoc": "^46.5.1",
c3eca146 132 "eslint-plugin-n": "^16.0.2",
2f8c5b5c 133 "eslint-plugin-promise": "^6.1.1",
06f7a33b 134 "eslint-plugin-spellcheck": "^0.0.20",
38e795c1 135 "eslint-plugin-tsdoc": "^0.2.17",
122741f6 136 "expect": "^29.6.4",
a974afa6 137 "husky": "^8.0.3",
14dca8ad 138 "lint-staged": "^14.0.1",
7595e433 139 "microtime": "^3.1.1",
5d5a6f8f 140 "mocha": "^10.2.0",
5080f39d 141 "mochawesome": "^7.1.3",
550f94cd 142 "prettier": "^3.0.3",
63ff88a9 143 "release-it": "^16.1.5",
ad11ca81 144 "rollup": "^3.29.0",
f45e4999 145 "rollup-plugin-analyzer": "^4.0.0",
5ea22628 146 "rollup-plugin-command": "^1.1.3",
660940b0 147 "rollup-plugin-delete": "^2.0.0",
be1a69be 148 "rollup-plugin-dts": "^6.0.1",
501f774f 149 "sinon": "^15.2.0",
eae1fc25 150 "source-map-support": "^0.5.21",
c9102ab4 151 "ts-standard": "^12.0.2",
c8284c4c 152 "typedoc": "^0.25.1",
1aacf52a 153 "typescript": "~5.2.2"
777b7824 154 }
6dc67cda 155}