chore: v2.4.11
[poolifier.git] / package.json
1 {
2 "name": "poolifier",
3 "version": "2.4.11",
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:typedoc": "rollup --config --environment BUILD:development --environment DOCUMENTATION",
18 "build:prod": "rollup --config",
19 "benchmark": "pnpm build && node -r source-map-support/register benchmarks/internal/bench.js",
20 "benchmark:debug": "pnpm build && node -r source-map-support/register --inspect benchmarks/internal/bench.js",
21 "benchmark:prod": "pnpm build:prod && node -r source-map-support/register benchmarks/internal/bench.js",
22 "test": "pnpm build && c8 mocha 'tests/**/*.test.js'",
23 "test:debug": "pnpm build && mocha --no-parallel --inspect 'tests/**/*.test.js'",
24 "coverage": "c8 report --reporter=lcov",
25 "coverage:html": "c8 report --reporter=html",
26 "format": "prettier . --cache --write; ts-standard . --fix",
27 "lint": "eslint . --cache",
28 "lint:fix": "eslint . --cache --fix",
29 "lint:report": "eslint . --cache --format json --output-file reports/eslint.json",
30 "release": "release-it",
31 "typedoc": "typedoc",
32 "prepublishOnly": "pnpm build:prod"
33 },
34 "ts-standard": {
35 "globals": [
36 "describe",
37 "it",
38 "before",
39 "after",
40 "beforeEach",
41 "afterEach"
42 ]
43 },
44 "engines": {
45 "node": ">=16.0.0",
46 "pnpm": ">= 8.0.0"
47 },
48 "volta": {
49 "node": "20.0.0"
50 },
51 "repository": {
52 "type": "git",
53 "url": "git+https://github.com/poolifier/poolifier.git"
54 },
55 "keywords": [
56 "node",
57 "pool",
58 "workers pool",
59 "threads pool",
60 "worker-threads",
61 "cluster",
62 "cluster worker",
63 "concurrency",
64 "performance",
65 "cpu",
66 "computing",
67 "async computing",
68 "async resource"
69 ],
70 "author": "pioardi",
71 "contributors": [
72 {
73 "name": "Christopher Quadflieg",
74 "email": "chrissi92@hotmail.de",
75 "url": "https://github.com/Shinigami92"
76 },
77 {
78 "name": "Jérôme Benoit",
79 "email": "jerome.benoit@piment-noir.org",
80 "url": "https://github.com/jerome-benoit"
81 }
82 ],
83 "funding": [
84 {
85 "type": "opencollective",
86 "url": "https://opencollective.com/poolifier"
87 },
88 {
89 "type": "github",
90 "url": "https://github.com/sponsors/poolifier"
91 }
92 ],
93 "bugs": {
94 "url": "https://github.com/poolifier/poolifier/issues"
95 },
96 "homepage": "https://github.com/poolifier/poolifier#readme",
97 "files": [
98 "lib"
99 ],
100 "devDependencies": {
101 "@commitlint/cli": "^17.6.1",
102 "@commitlint/config-conventional": "^17.6.1",
103 "@release-it/bumper": "^4.0.2",
104 "@release-it/keep-a-changelog": "^3.1.0",
105 "@rollup/plugin-terser": "^0.4.1",
106 "@rollup/plugin-typescript": "^11.1.0",
107 "@types/node": "^18.16.0",
108 "@typescript-eslint/eslint-plugin": "^5.59.0",
109 "@typescript-eslint/parser": "^5.59.0",
110 "benny": "^3.7.1",
111 "c8": "^7.13.0",
112 "eslint": "^8.39.0",
113 "eslint-config-standard": "^17.0.0",
114 "eslint-config-standard-with-typescript": "^34.0.1",
115 "eslint-define-config": "^1.18.0",
116 "eslint-import-resolver-typescript": "^3.5.5",
117 "eslint-plugin-import": "^2.27.5",
118 "eslint-plugin-jsdoc": "^43.0.7",
119 "eslint-plugin-n": "^15.7.0",
120 "eslint-plugin-promise": "^6.1.1",
121 "eslint-plugin-spellcheck": "^0.0.20",
122 "eslint-plugin-tsdoc": "^0.2.17",
123 "expect": "^29.5.0",
124 "husky": "^8.0.3",
125 "lint-staged": "^13.2.1",
126 "microtime": "^3.1.1",
127 "mocha": "^10.2.0",
128 "mochawesome": "^7.1.3",
129 "prettier": "^2.8.8",
130 "prettier-plugin-organize-imports": "^3.2.2",
131 "release-it": "^15.10.1",
132 "rollup": "^3.20.7",
133 "rollup-plugin-analyzer": "^4.0.0",
134 "rollup-plugin-command": "^1.1.3",
135 "rollup-plugin-delete": "^2.0.0",
136 "sinon": "^15.0.4",
137 "source-map-support": "^0.5.21",
138 "ts-standard": "^12.0.2",
139 "typedoc": "^0.24.5",
140 "typescript": "^5.0.4"
141 }
142 }