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