chore: v2.4.0-0
[poolifier.git] / package.json
1 {
2 "name": "poolifier",
3 "version": "2.4.0-0",
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 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 run build && node -r source-map-support/register benchmarks/internal/bench.js",
20 "benchmark:debug": "pnpm run build && node -r source-map-support/register --inspect benchmarks/internal/bench.js",
21 "benchmark:prod": "pnpm run build:prod && node -r source-map-support/register benchmarks/internal/bench.js",
22 "test": "pnpm run build && c8 mocha 'tests/**/*.test.js'",
23 "test:debug": "pnpm run 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 run 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 },
47 "repository": {
48 "type": "git",
49 "url": "git+https://github.com/poolifier/poolifier.git"
50 },
51 "keywords": [
52 "node",
53 "pool",
54 "workers pool",
55 "threads pool",
56 "worker-threads",
57 "cluster",
58 "cluster worker",
59 "concurrency",
60 "performance",
61 "cpu",
62 "computing",
63 "async computing",
64 "async resource"
65 ],
66 "author": "pioardi",
67 "contributors": [
68 {
69 "name": "Christopher Quadflieg",
70 "email": "chrissi92@hotmail.de",
71 "url": "https://github.com/Shinigami92"
72 },
73 {
74 "name": "Jérôme Benoit",
75 "email": "jerome.benoit@piment-noir.org",
76 "url": "https://github.com/jerome-benoit"
77 }
78 ],
79 "funding": [
80 {
81 "type": "opencollective",
82 "url": "https://opencollective.com/poolifier"
83 },
84 {
85 "type": "github",
86 "url": "https://github.com/sponsors/poolifier"
87 }
88 ],
89 "bugs": {
90 "url": "https://github.com/poolifier/poolifier/issues"
91 },
92 "homepage": "https://github.com/poolifier/poolifier#readme",
93 "files": [
94 "lib"
95 ],
96 "devDependencies": {
97 "@commitlint/cli": "^17.5.1",
98 "@commitlint/config-conventional": "^17.4.4",
99 "@release-it/bumper": "^4.0.2",
100 "@release-it/keep-a-changelog": "^3.1.0",
101 "@rollup/plugin-terser": "^0.4.0",
102 "@rollup/plugin-typescript": "^11.0.0",
103 "@types/node": "^18.15.11",
104 "@typescript-eslint/eslint-plugin": "^5.57.1",
105 "@typescript-eslint/parser": "^5.57.1",
106 "benny": "^3.7.1",
107 "c8": "^7.13.0",
108 "eslint": "^8.37.0",
109 "eslint-config-standard": "^17.0.0",
110 "eslint-config-standard-with-typescript": "^34.0.1",
111 "eslint-define-config": "^1.17.0",
112 "eslint-import-resolver-typescript": "^3.5.4",
113 "eslint-plugin-import": "^2.27.5",
114 "eslint-plugin-jsdoc": "^40.1.1",
115 "eslint-plugin-n": "^15.7.0",
116 "eslint-plugin-promise": "^6.1.1",
117 "eslint-plugin-spellcheck": "^0.0.20",
118 "eslint-plugin-tsdoc": "^0.2.17",
119 "expect": "^29.5.0",
120 "husky": "^8.0.3",
121 "lint-staged": "^13.2.0",
122 "microtime": "^3.1.1",
123 "mocha": "^10.2.0",
124 "mochawesome": "^7.1.3",
125 "prettier": "^2.8.7",
126 "prettier-plugin-organize-imports": "^3.2.2",
127 "release-it": "^15.10.1",
128 "rollup": "^3.20.2",
129 "rollup-plugin-analyzer": "^4.0.0",
130 "rollup-plugin-command": "^1.1.3",
131 "rollup-plugin-delete": "^2.0.0",
132 "sinon": "^15.0.3",
133 "source-map-support": "^0.5.21",
134 "ts-standard": "^12.0.2",
135 "typedoc": "^0.23.28",
136 "typescript": "^5.0.3"
137 }
138 }