chore: v3.1.15-0
[poolifier.git] / package.json
1 {
2 "$schema": "https://json.schemastore.org/package",
3 "name": "poolifier",
4 "version": "3.1.15-0",
5 "description": "Fast and small Node.js Worker_Threads and Cluster Worker Pool",
6 "license": "MIT",
7 "type": "module",
8 "main": "./lib/index.cjs",
9 "exports": {
10 ".": {
11 "types": "./lib/index.d.ts",
12 "require": "./lib/index.cjs",
13 "import": "./lib/index.mjs"
14 }
15 },
16 "types": "./lib/index.d.ts",
17 "scripts": {
18 "preinstall": "npx --yes only-allow pnpm",
19 "prepare": "node prepare.mjs",
20 "build": "rollup --config --environment BUILD:development",
21 "build:prod": "rollup --config",
22 "build:typedoc": "rollup --config --environment DOCUMENTATION,BUILD:development",
23 "build:analyze": "rollup --config --environment ANALYZE,BUILD:development",
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",
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'",
29 "coverage": "c8 report --reporter=lcov",
30 "coverage:html": "c8 report --reporter=html",
31 "format": "biome format . --write; eslint . --cache --fix",
32 "lint": "eslint . --cache",
33 "lint:fix": "eslint . --cache --fix",
34 "lint:report": "eslint . --cache --format json --output-file reports/eslint.json",
35 "release": "release-it",
36 "typedoc": "node typedoc.mjs",
37 "prepublishOnly": "pnpm build:prod"
38 },
39 "engines": {
40 "node": ">=18.0.0",
41 "pnpm": ">=8.6.0"
42 },
43 "volta": {
44 "node": "20.10.0",
45 "pnpm": "8.13.1"
46 },
47 "repository": {
48 "type": "git",
49 "url": "https://github.com/poolifier/poolifier.git"
50 },
51 "keywords": [
52 "nodejs",
53 "worker pool",
54 "thread pool",
55 "worker_threads",
56 "cluster",
57 "concurrency",
58 "performance",
59 "cpu",
60 "computing",
61 "scheduling",
62 "parallelism",
63 "eventloop"
64 ],
65 "author": {
66 "name": "Alessandro Pio Ardizio",
67 "email": "alessandroardizio94@gmail.com",
68 "url": "https://github.com/pioardi"
69 },
70 "contributors": [
71 {
72 "name": "Christopher Quadflieg",
73 "email": "chrissi92@hotmail.de",
74 "url": "https://github.com/Shinigami92"
75 },
76 {
77 "name": "Jérôme Benoit",
78 "email": "jerome.benoit@piment-noir.org",
79 "url": "https://github.com/jerome-benoit"
80 }
81 ],
82 "funding": [
83 {
84 "type": "opencollective",
85 "url": "https://opencollective.com/poolifier"
86 },
87 {
88 "type": "github",
89 "url": "https://github.com/sponsors/poolifier"
90 }
91 ],
92 "bugs": {
93 "url": "https://github.com/poolifier/poolifier/issues"
94 },
95 "homepage": "https://github.com/poolifier/poolifier#readme",
96 "files": [
97 "lib"
98 ],
99 "pnpm": {
100 "overrides": {
101 "semver": "^7.5.3"
102 }
103 },
104 "devDependencies": {
105 "@biomejs/biome": "^1.4.1",
106 "@commitlint/cli": "^18.4.3",
107 "@commitlint/config-conventional": "^18.4.3",
108 "@release-it/bumper": "^6.0.1",
109 "@release-it/keep-a-changelog": "^5.0.0",
110 "@rollup/plugin-terser": "^0.4.4",
111 "@rollup/plugin-typescript": "^11.1.5",
112 "@types/node": "^20.10.6",
113 "@typescript-eslint/eslint-plugin": "^6.17.0",
114 "@typescript-eslint/parser": "^6.17.0",
115 "benchmark": "^2.1.4",
116 "c8": "^8.0.1",
117 "cross-env": "^7.0.3",
118 "eslint": "^8.56.0",
119 "eslint-config-standard": "^17.1.0",
120 "eslint-config-standard-with-typescript": "^43.0.0",
121 "eslint-define-config": "^2.1.0",
122 "eslint-import-resolver-typescript": "^3.6.1",
123 "eslint-plugin-import": "^2.29.1",
124 "eslint-plugin-jsdoc": "^47.0.2",
125 "eslint-plugin-n": "^16.6.0",
126 "eslint-plugin-promise": "^6.1.1",
127 "eslint-plugin-spellcheck": "^0.0.20",
128 "eslint-plugin-tsdoc": "^0.2.17",
129 "expect": "^29.7.0",
130 "husky": "^8.0.3",
131 "lint-staged": "^15.2.0",
132 "microtime": "^3.1.1",
133 "mocha": "^10.2.0",
134 "mochawesome": "^7.1.3",
135 "prettier": "^3.1.1",
136 "release-it": "^17.0.1",
137 "rollup": "^4.9.2",
138 "rollup-plugin-analyzer": "^4.0.0",
139 "rollup-plugin-command": "^1.1.3",
140 "rollup-plugin-delete": "^2.0.0",
141 "rollup-plugin-dts": "^6.1.0",
142 "sinon": "^17.0.1",
143 "typedoc": "^0.25.6",
144 "typescript": "~5.3.3"
145 }
146 }