chore: v3.1.15-0
[poolifier.git] / package.json
CommitLineData
6dc67cda 1{
4f19da60 2 "$schema": "https://json.schemastore.org/package",
5648b9ca 3 "name": "poolifier",
565b7e65 4 "version": "3.1.15-0",
3eed0bf4 5 "description": "Fast and small Node.js Worker_Threads and Cluster Worker Pool",
479b44a7 6 "license": "MIT",
d35e5717
JB
7 "type": "module",
8 "main": "./lib/index.cjs",
fe18768d
JB
9 "exports": {
10 ".": {
9606b474 11 "types": "./lib/index.d.ts",
d35e5717 12 "require": "./lib/index.cjs",
6abad580 13 "import": "./lib/index.mjs"
fe18768d
JB
14 }
15 },
5938b2d1 16 "types": "./lib/index.d.ts",
6dc67cda 17 "scripts": {
ebfea361 18 "preinstall": "npx --yes only-allow pnpm",
b1500787 19 "prepare": "node prepare.mjs",
f4162974
JB
20 "build": "rollup --config --environment BUILD:development",
21 "build:prod": "rollup --config",
387dac3b
JB
22 "build:typedoc": "rollup --config --environment DOCUMENTATION,BUILD:development",
23 "build:analyze": "rollup --config --environment ANALYZE,BUILD:development",
00a2ffdb
JB
24 "benchmark": "pnpm build && node --max-old-space-size=8192 --enable-source-maps benchmarks/internal/bench.mjs",
25 "benchmark:prod": "pnpm build:prod && node --max-old-space-size=8192 --enable-source-maps benchmarks/internal/bench.mjs",
26 "benchmark:debug": "pnpm build && node --max-old-space-size=8192 --enable-source-maps --inspect benchmarks/internal/bench.mjs",
c329fd41
JB
27 "test": "pnpm build --environment SOURCEMAP:false && cross-env NODE_ENV=test c8 mocha 'tests/**/*.test.mjs'",
28 "test:debug": "pnpm build && cross-env NODE_ENV=test mocha --no-parallel --inspect 'tests/**/*.test.mjs'",
0fd86768
JB
29 "coverage": "c8 report --reporter=lcov",
30 "coverage:html": "c8 report --reporter=html",
6e50abac 31 "format": "biome format . --write; eslint . --cache --fix",
e99dbb69
JB
32 "lint": "eslint . --cache",
33 "lint:fix": "eslint . --cache --fix",
7d82d90e 34 "lint:report": "eslint . --cache --format json --output-file reports/eslint.json",
05a66b11 35 "release": "release-it",
2ab81545 36 "typedoc": "node typedoc.mjs",
bb8ed27c 37 "prepublishOnly": "pnpm build:prod"
6dc67cda 38 },
78cea37e 39 "engines": {
277c49bf 40 "node": ">=18.0.0",
0fb30db7 41 "pnpm": ">=8.6.0"
78cea37e 42 },
bc3227d8 43 "volta": {
11370d9f 44 "node": "20.10.0",
09551c27 45 "pnpm": "8.13.1"
bc3227d8 46 },
6dc67cda 47 "repository": {
48 "type": "git",
f6215a17 49 "url": "https://github.com/poolifier/poolifier.git"
6dc67cda 50 },
51 "keywords": [
66ce9e2d
JB
52 "nodejs",
53 "worker pool",
54 "thread pool",
2fbe1783 55 "worker_threads",
660940b0 56 "cluster",
31b90205 57 "concurrency",
6dc67cda 58 "performance",
59 "cpu",
973cde26 60 "computing",
66ce9e2d
JB
61 "scheduling",
62 "parallelism",
63 "eventloop"
6dc67cda 64 ],
c613e813
JB
65 "author": {
66 "name": "Alessandro Pio Ardizio",
67 "email": "alessandroardizio94@gmail.com",
68 "url": "https://github.com/pioardi"
69 },
7e4f7b97 70 "contributors": [
71 {
72 "name": "Christopher Quadflieg",
73 "email": "chrissi92@hotmail.de",
74 "url": "https://github.com/Shinigami92"
75 },
76 {
818f2180 77 "name": "Jérôme Benoit",
7c638181 78 "email": "jerome.benoit@piment-noir.org",
7e4f7b97 79 "url": "https://github.com/jerome-benoit"
80 }
81 ],
479b44a7
JB
82 "funding": [
83 {
84 "type": "opencollective",
85 "url": "https://opencollective.com/poolifier"
09bf56a0
JB
86 },
87 {
88 "type": "github",
89 "url": "https://github.com/sponsors/poolifier"
479b44a7
JB
90 }
91 ],
6dc67cda 92 "bugs": {
6ccc1262 93 "url": "https://github.com/poolifier/poolifier/issues"
6dc67cda 94 },
6ccc1262 95 "homepage": "https://github.com/poolifier/poolifier#readme",
1df5c5ee
JB
96 "files": [
97 "lib"
98 ],
c6bcaac6
JB
99 "pnpm": {
100 "overrides": {
101 "semver": "^7.5.3"
102 }
103 },
973cde26 104 "devDependencies": {
1df5c5ee 105 "@biomejs/biome": "^1.4.1",
ec88da80
JB
106 "@commitlint/cli": "^18.4.3",
107 "@commitlint/config-conventional": "^18.4.3",
9b0caac7
JB
108 "@release-it/bumper": "^6.0.1",
109 "@release-it/keep-a-changelog": "^5.0.0",
26bb464f
JB
110 "@rollup/plugin-terser": "^0.4.4",
111 "@rollup/plugin-typescript": "^11.1.5",
4f81f24d 112 "@types/node": "^20.10.6",
05caa138
JB
113 "@typescript-eslint/eslint-plugin": "^6.17.0",
114 "@typescript-eslint/parser": "^6.17.0",
f1c674cd 115 "benchmark": "^2.1.4",
21554946 116 "c8": "^8.0.1",
c329fd41 117 "cross-env": "^7.0.3",
b91134ce 118 "eslint": "^8.56.0",
458509ad 119 "eslint-config-standard": "^17.1.0",
b91134ce 120 "eslint-config-standard-with-typescript": "^43.0.0",
09551c27 121 "eslint-define-config": "^2.1.0",
6bd229c4 122 "eslint-import-resolver-typescript": "^3.6.1",
44bd1107 123 "eslint-plugin-import": "^2.29.1",
7c3f5d08 124 "eslint-plugin-jsdoc": "^47.0.2",
67f3f2d6 125 "eslint-plugin-n": "^16.6.0",
2f8c5b5c 126 "eslint-plugin-promise": "^6.1.1",
06f7a33b 127 "eslint-plugin-spellcheck": "^0.0.20",
38e795c1 128 "eslint-plugin-tsdoc": "^0.2.17",
1c25f937 129 "expect": "^29.7.0",
a974afa6 130 "husky": "^8.0.3",
83a73943 131 "lint-staged": "^15.2.0",
7595e433 132 "microtime": "^3.1.1",
5d5a6f8f 133 "mocha": "^10.2.0",
5080f39d 134 "mochawesome": "^7.1.3",
d3155639 135 "prettier": "^3.1.1",
8428b256 136 "release-it": "^17.0.1",
4f81f24d 137 "rollup": "^4.9.2",
f45e4999 138 "rollup-plugin-analyzer": "^4.0.0",
5ea22628 139 "rollup-plugin-command": "^1.1.3",
660940b0 140 "rollup-plugin-delete": "^2.0.0",
870a814b 141 "rollup-plugin-dts": "^6.1.0",
b4d55613 142 "sinon": "^17.0.1",
05caa138 143 "typedoc": "^0.25.6",
9e84dd97 144 "typescript": "~5.3.3"
777b7824 145 }
6dc67cda 146}