build(deps-dev): apply updates
[poolifier.git] / package.json
CommitLineData
6dc67cda 1{
4f19da60 2 "$schema": "https://json.schemastore.org/package",
5648b9ca 3 "name": "poolifier",
a19a4833 4 "version": "4.0.8",
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": {
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",
98f60ddd
JB
24 "benchmark:tatami-ng": "pnpm build && node --enable-source-maps benchmarks/internal/bench.mjs -t tatami-ng",
25 "benchmark:tatami-ng:prod": "pnpm build:prod && node --enable-source-maps benchmarks/internal/bench.mjs -t tatami-ng",
26 "benchmark:tatami-ng:debug": "pnpm build && node --enable-source-maps --inspect benchmarks/internal/bench.mjs -t tatami-ng",
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": {
b9ded264 40 "node": ">=18.0.0",
3d5424d5 41 "pnpm": ">=9.0.0"
78cea37e 42 },
bc3227d8 43 "volta": {
4b72aab9 44 "node": "22.2.0",
ce711c4a 45 "pnpm": "9.1.1"
bc3227d8 46 },
ce711c4a 47 "packageManager": "pnpm@9.1.1",
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": {
575b4bf8 104 "@biomejs/biome": "^1.7.3",
4f48f613 105 "@commitlint/cli": "^19.3.0",
53a0019f 106 "@commitlint/config-conventional": "^19.2.2",
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",
c8e1a85c 111 "@types/node": "^20.12.12",
05ecc3f6
JB
112 "@typescript-eslint/eslint-plugin": "^7.9.0",
113 "@typescript-eslint/parser": "^7.9.0",
fd7f20bf 114 "c8": "^9.1.0",
c329fd41 115 "cross-env": "^7.0.3",
249f260c 116 "eslint": "^8.57.0",
78338da8 117 "eslint-config-love": "^47.0.0",
458509ad 118 "eslint-config-standard": "^17.1.0",
09551c27 119 "eslint-define-config": "^2.1.0",
6bd229c4 120 "eslint-import-resolver-typescript": "^3.6.1",
44bd1107 121 "eslint-plugin-import": "^2.29.1",
eecb369e 122 "eslint-plugin-jsdoc": "^48.2.5",
c8e1a85c 123 "eslint-plugin-n": "^17.7.0",
2f8c5b5c 124 "eslint-plugin-promise": "^6.1.1",
98ec2d70 125 "eslint-plugin-simple-import-sort": "^12.1.0",
06f7a33b 126 "eslint-plugin-spellcheck": "^0.0.20",
38e795c1 127 "eslint-plugin-tsdoc": "^0.2.17",
1c25f937 128 "expect": "^29.7.0",
902f1af1 129 "husky": "^9.0.11",
346abcd7 130 "lint-staged": "^15.2.2",
7595e433 131 "microtime": "^3.1.1",
eb04c871 132 "mocha": "^10.4.0",
5080f39d 133 "mochawesome": "^7.1.3",
2fdbf3a9 134 "prettier": "^3.2.5",
df04527c 135 "release-it": "^17.2.1",
4a6ebc42 136 "rollup": "^4.17.2",
f45e4999 137 "rollup-plugin-analyzer": "^4.0.0",
5ea22628 138 "rollup-plugin-command": "^1.1.3",
660940b0 139 "rollup-plugin-delete": "^2.0.0",
870a814b 140 "rollup-plugin-dts": "^6.1.0",
eecb369e 141 "sinon": "^18.0.0",
f4ec35a9 142 "tatami-ng": "^0.4.10",
66c8eb90 143 "typedoc": "^0.25.13",
f86caabc 144 "typescript": "~5.4.5"
777b7824 145 }
6dc67cda 146}