build(deps-dev): bump @types/node from 20.11.29 to 20.11.30
[poolifier.git] / package.json
CommitLineData
6dc67cda 1{
4f19da60 2 "$schema": "https://json.schemastore.org/package",
5648b9ca 3 "name": "poolifier",
01f4a5ce 4 "version": "3.1.22",
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",
fc3eb720 9 "module": "./lib/index.mjs",
108782d6 10 "types": "./lib/index.d.ts",
fe18768d
JB
11 "exports": {
12 ".": {
9606b474 13 "types": "./lib/index.d.ts",
d35e5717 14 "require": "./lib/index.cjs",
6abad580 15 "import": "./lib/index.mjs"
fe18768d
JB
16 }
17 },
6dc67cda 18 "scripts": {
ebfea361 19 "preinstall": "npx --yes only-allow pnpm",
b1500787 20 "prepare": "node prepare.mjs",
f4162974
JB
21 "build": "rollup --config --environment BUILD:development",
22 "build:prod": "rollup --config",
387dac3b
JB
23 "build:typedoc": "rollup --config --environment DOCUMENTATION,BUILD:development",
24 "build:analyze": "rollup --config --environment ANALYZE,BUILD:development",
00a2ffdb
JB
25 "benchmark": "pnpm build && node --max-old-space-size=8192 --enable-source-maps benchmarks/internal/bench.mjs",
26 "benchmark:prod": "pnpm build:prod && node --max-old-space-size=8192 --enable-source-maps benchmarks/internal/bench.mjs",
27 "benchmark:debug": "pnpm build && node --max-old-space-size=8192 --enable-source-maps --inspect benchmarks/internal/bench.mjs",
c329fd41
JB
28 "test": "pnpm build --environment SOURCEMAP:false && cross-env NODE_ENV=test c8 mocha 'tests/**/*.test.mjs'",
29 "test:debug": "pnpm build && cross-env NODE_ENV=test mocha --no-parallel --inspect 'tests/**/*.test.mjs'",
0fd86768
JB
30 "coverage": "c8 report --reporter=lcov",
31 "coverage:html": "c8 report --reporter=html",
6e50abac 32 "format": "biome format . --write; eslint . --cache --fix",
e99dbb69
JB
33 "lint": "eslint . --cache",
34 "lint:fix": "eslint . --cache --fix",
7d82d90e 35 "lint:report": "eslint . --cache --format json --output-file reports/eslint.json",
05a66b11 36 "release": "release-it",
2ab81545 37 "typedoc": "node typedoc.mjs",
bb8ed27c 38 "prepublishOnly": "pnpm build:prod"
6dc67cda 39 },
78cea37e 40 "engines": {
277c49bf 41 "node": ">=18.0.0",
0fb30db7 42 "pnpm": ">=8.6.0"
78cea37e 43 },
bc3227d8 44 "volta": {
434206de 45 "node": "20.11.1",
1bbea1bc 46 "pnpm": "8.15.5"
bc3227d8 47 },
6dc67cda 48 "repository": {
49 "type": "git",
f6215a17 50 "url": "https://github.com/poolifier/poolifier.git"
6dc67cda 51 },
52 "keywords": [
66ce9e2d
JB
53 "nodejs",
54 "worker pool",
55 "thread pool",
2fbe1783 56 "worker_threads",
660940b0 57 "cluster",
31b90205 58 "concurrency",
6dc67cda 59 "performance",
60 "cpu",
973cde26 61 "computing",
66ce9e2d
JB
62 "scheduling",
63 "parallelism",
64 "eventloop"
6dc67cda 65 ],
c613e813
JB
66 "author": {
67 "name": "Alessandro Pio Ardizio",
68 "email": "alessandroardizio94@gmail.com",
69 "url": "https://github.com/pioardi"
70 },
7e4f7b97 71 "contributors": [
72 {
73 "name": "Christopher Quadflieg",
74 "email": "chrissi92@hotmail.de",
75 "url": "https://github.com/Shinigami92"
76 },
77 {
818f2180 78 "name": "Jérôme Benoit",
7c638181 79 "email": "jerome.benoit@piment-noir.org",
7e4f7b97 80 "url": "https://github.com/jerome-benoit"
81 }
82 ],
479b44a7
JB
83 "funding": [
84 {
85 "type": "opencollective",
86 "url": "https://opencollective.com/poolifier"
09bf56a0
JB
87 },
88 {
89 "type": "github",
90 "url": "https://github.com/sponsors/poolifier"
479b44a7
JB
91 }
92 ],
6dc67cda 93 "bugs": {
6ccc1262 94 "url": "https://github.com/poolifier/poolifier/issues"
6dc67cda 95 },
6ccc1262 96 "homepage": "https://github.com/poolifier/poolifier#readme",
4669e767 97 "files": ["lib"],
c6bcaac6
JB
98 "pnpm": {
99 "overrides": {
100 "semver": "^7.5.3"
101 }
102 },
973cde26 103 "devDependencies": {
eb2a7c81 104 "@biomejs/biome": "^1.6.1",
dead0918 105 "@commitlint/cli": "^19.2.1",
b3543488 106 "@commitlint/config-conventional": "^19.1.0",
9b0caac7
JB
107 "@release-it/bumper": "^6.0.1",
108 "@release-it/keep-a-changelog": "^5.0.0",
26bb464f 109 "@rollup/plugin-terser": "^0.4.4",
6800818f 110 "@rollup/plugin-typescript": "^11.1.6",
e3d8db74 111 "@types/node": "^20.11.30",
dead0918
JB
112 "@typescript-eslint/eslint-plugin": "^7.3.1",
113 "@typescript-eslint/parser": "^7.3.1",
f1c674cd 114 "benchmark": "^2.1.4",
fd7f20bf 115 "c8": "^9.1.0",
c329fd41 116 "cross-env": "^7.0.3",
249f260c 117 "eslint": "^8.57.0",
7471ae6b 118 "eslint-config-love": "^43.1.0",
458509ad 119 "eslint-config-standard": "^17.1.0",
09551c27 120 "eslint-define-config": "^2.1.0",
6bd229c4 121 "eslint-import-resolver-typescript": "^3.6.1",
44bd1107 122 "eslint-plugin-import": "^2.29.1",
0e869179 123 "eslint-plugin-jsdoc": "^48.2.1",
a7bbb790 124 "eslint-plugin-n": "^16.6.2",
2f8c5b5c 125 "eslint-plugin-promise": "^6.1.1",
ded253e2 126 "eslint-plugin-simple-import-sort": "^12.0.0",
06f7a33b 127 "eslint-plugin-spellcheck": "^0.0.20",
38e795c1 128 "eslint-plugin-tsdoc": "^0.2.17",
1c25f937 129 "expect": "^29.7.0",
902f1af1 130 "husky": "^9.0.11",
346abcd7 131 "lint-staged": "^15.2.2",
7595e433 132 "microtime": "^3.1.1",
c6aba242 133 "mocha": "^10.3.0",
5080f39d 134 "mochawesome": "^7.1.3",
2fdbf3a9 135 "prettier": "^3.2.5",
e424ca32 136 "release-it": "^17.1.1",
b3543488 137 "rollup": "^4.13.0",
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",
6bb2a64f 143 "typedoc": "^0.25.12",
dcd3f113 144 "typescript": "~5.4.2"
777b7824 145 }
6dc67cda 146}