chore: v2.6.37
[poolifier.git] / package.json
1 {
2 "$schema": "https://json.schemastore.org/package",
3 "name": "poolifier",
4 "version": "2.6.37",
5 "description": "Fast and small Node.js Worker_Threads and Cluster Worker Pool",
6 "license": "MIT",
7 "main": "./lib/index.js",
8 "exports": {
9 ".": {
10 "types": "./lib/index.d.ts",
11 "require": "./lib/index.js",
12 "import": "./lib/index.mjs"
13 }
14 },
15 "scripts": {
16 "preinstall": "npx --yes only-allow pnpm",
17 "prepare": "node prepare.js",
18 "build": "rollup --config --environment BUILD:development",
19 "build:analyze": "rollup --config --environment ANALYZE,BUILD:development",
20 "build:typedoc": "rollup --config --environment DOCUMENTATION,BUILD:development",
21 "build:prod": "rollup --config",
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",
24 "benchmark:prod": "pnpm build:prod && benchmarks/internal/bench.mjs",
25 "test": "pnpm build && c8 mocha 'tests/**/*.test.js'",
26 "test:debug": "pnpm build && mocha --no-parallel --inspect 'tests/**/*.test.js'",
27 "coverage": "c8 report --reporter=lcov",
28 "coverage:html": "c8 report --reporter=html",
29 "format": "rome format . --write; ts-standard . --fix",
30 "lint": "eslint . --cache",
31 "lint:fix": "eslint . --cache --fix",
32 "lint:report": "eslint . --cache --format json --output-file reports/eslint.json",
33 "release": "release-it",
34 "typedoc": "node typedoc.mjs",
35 "prepublishOnly": "pnpm build:prod"
36 },
37 "ts-standard": {
38 "globals": [
39 "describe",
40 "it",
41 "before",
42 "after",
43 "beforeEach",
44 "afterEach"
45 ]
46 },
47 "engines": {
48 "node": ">=16.14.0",
49 "pnpm": ">=8.6.0"
50 },
51 "volta": {
52 "node": "20.5.1",
53 "pnpm": "8.7.0"
54 },
55 "repository": {
56 "type": "git",
57 "url": "git+https://github.com/poolifier/poolifier.git"
58 },
59 "keywords": [
60 "nodejs",
61 "worker pool",
62 "thread pool",
63 "worker_threads",
64 "cluster",
65 "concurrency",
66 "performance",
67 "cpu",
68 "computing",
69 "scheduling",
70 "parallelism",
71 "eventloop"
72 ],
73 "author": "pioardi",
74 "contributors": [
75 {
76 "name": "Christopher Quadflieg",
77 "email": "chrissi92@hotmail.de",
78 "url": "https://github.com/Shinigami92"
79 },
80 {
81 "name": "Jérôme Benoit",
82 "email": "jerome.benoit@piment-noir.org",
83 "url": "https://github.com/jerome-benoit"
84 }
85 ],
86 "funding": [
87 {
88 "type": "opencollective",
89 "url": "https://opencollective.com/poolifier"
90 },
91 {
92 "type": "github",
93 "url": "https://github.com/sponsors/poolifier"
94 }
95 ],
96 "bugs": {
97 "url": "https://github.com/poolifier/poolifier/issues"
98 },
99 "homepage": "https://github.com/poolifier/poolifier#readme",
100 "files": [
101 "lib"
102 ],
103 "pnpm": {
104 "overrides": {
105 "semver": "^7.5.3"
106 }
107 },
108 "devDependencies": {
109 "@commitlint/cli": "^17.7.1",
110 "@commitlint/config-conventional": "^17.7.0",
111 "@release-it/bumper": "^5.1.0",
112 "@release-it/keep-a-changelog": "^4.0.0",
113 "@rollup/plugin-terser": "^0.4.3",
114 "@rollup/plugin-typescript": "^11.1.3",
115 "@types/node": "^20.5.7",
116 "@typescript-eslint/eslint-plugin": "^6.5.0",
117 "@typescript-eslint/parser": "^6.5.0",
118 "benny": "^3.7.1",
119 "c8": "^8.0.1",
120 "eslint": "^8.48.0",
121 "eslint-config-standard": "^17.1.0",
122 "eslint-config-standard-with-typescript": "^39.0.0",
123 "eslint-define-config": "^1.23.0",
124 "eslint-import-resolver-typescript": "^3.6.0",
125 "eslint-plugin-import": "^2.28.1",
126 "eslint-plugin-jsdoc": "^46.5.0",
127 "eslint-plugin-n": "^16.0.2",
128 "eslint-plugin-promise": "^6.1.1",
129 "eslint-plugin-spellcheck": "^0.0.20",
130 "eslint-plugin-tsdoc": "^0.2.17",
131 "expect": "^29.6.4",
132 "husky": "^8.0.3",
133 "lint-staged": "^14.0.1",
134 "microtime": "^3.1.1",
135 "mocha": "^10.2.0",
136 "mochawesome": "^7.1.3",
137 "prettier": "^3.0.2",
138 "release-it": "^16.1.5",
139 "rollup": "^3.28.1",
140 "rollup-plugin-analyzer": "^4.0.0",
141 "rollup-plugin-command": "^1.1.3",
142 "rollup-plugin-delete": "^2.0.0",
143 "rome": "^12.1.3",
144 "sinon": "^15.2.0",
145 "source-map-support": "^0.5.21",
146 "ts-standard": "^12.0.2",
147 "typedoc": "^0.25.0",
148 "typescript": "~5.2.2"
149 }
150 }