chore: v2.3.9
[poolifier.git] / package.json
CommitLineData
6dc67cda 1{
5648b9ca 2 "name": "poolifier",
d7b78217 3 "version": "2.3.9",
31d1ddd9 4 "description": "A fast, easy to use Node.js Worker Thread Pool and Cluster Pool implementation",
479b44a7 5 "license": "MIT",
34a0cfab
JB
6 "exports": [
7 "lib/index.js",
8 "lib/index.mjs"
9 ],
6dc67cda 10 "scripts": {
86092b19 11 "prepare": "node prepare.js",
f4162974 12 "build": "rollup --config --environment BUILD:development",
7c0ba920 13 "build:typedoc": "rollup --config --environment BUILD:development --environment DOCUMENTATION",
f4162974 14 "build:prod": "rollup --config",
be0676b3
APA
15 "benchmark": "npm run build && node -r source-map-support/register benchmarks/internal/bench.js",
16 "benchmark:debug": "npm run build && node -r source-map-support/register --inspect benchmarks/internal/bench.js",
17 "benchmark:prod": "npm run build:prod && node -r source-map-support/register benchmarks/internal/bench.js",
0fd86768 18 "test": "npm run build && c8 mocha 'tests/**/*.test.js'",
2c1331d6 19 "test:debug": "npm run build && mocha --no-parallel --inspect 'tests/**/*.test.js'",
0fd86768
JB
20 "coverage": "c8 report --reporter=lcov",
21 "coverage:html": "c8 report --reporter=html",
e47bed93 22 "format": "prettier . --cache --write; ts-standard . --fix",
e99dbb69
JB
23 "lint": "eslint . --cache",
24 "lint:fix": "eslint . --cache --fix",
7d82d90e 25 "lint:report": "eslint . --cache --format json --output-file reports/eslint.json",
05a66b11 26 "release": "release-it",
5ea22628 27 "typedoc": "typedoc",
e41beb60 28 "prepublishOnly": "npm run build:prod"
6dc67cda 29 },
78cea37e 30 "ts-standard": {
af5204ed
JB
31 "globals": [
32 "describe",
33 "it",
34 "before",
35 "after",
36 "beforeEach",
37 "afterEach"
78cea37e
JB
38 ]
39 },
40 "engines": {
41 "node": ">=16.0.0",
42 "npm": ">=8.0.0"
43 },
6dc67cda 44 "repository": {
45 "type": "git",
6ccc1262 46 "url": "git+https://github.com/poolifier/poolifier.git"
6dc67cda 47 },
48 "keywords": [
49 "node",
31b90205
JB
50 "pool",
51 "workers pool",
52 "threads pool",
6dc67cda 53 "worker-threads",
660940b0 54 "cluster",
31b90205
JB
55 "cluster worker",
56 "concurrency",
6dc67cda 57 "performance",
58 "cpu",
973cde26 59 "computing",
31b90205
JB
60 "async computing",
61 "async resource"
6dc67cda 62 ],
6dc67cda 63 "author": "pioardi",
7e4f7b97 64 "contributors": [
65 {
66 "name": "Christopher Quadflieg",
67 "email": "chrissi92@hotmail.de",
68 "url": "https://github.com/Shinigami92"
69 },
70 {
818f2180 71 "name": "Jérôme Benoit",
7c638181 72 "email": "jerome.benoit@piment-noir.org",
7e4f7b97 73 "url": "https://github.com/jerome-benoit"
74 }
75 ],
479b44a7
JB
76 "funding": [
77 {
78 "type": "opencollective",
79 "url": "https://opencollective.com/poolifier"
80 }
81 ],
6dc67cda 82 "bugs": {
6ccc1262 83 "url": "https://github.com/poolifier/poolifier/issues"
6dc67cda 84 },
6ccc1262 85 "homepage": "https://github.com/poolifier/poolifier#readme",
c2a9d1e6
S
86 "files": [
87 "lib"
88 ],
973cde26 89 "devDependencies": {
031c8ab9
JB
90 "@commitlint/cli": "^17.4.4",
91 "@commitlint/config-conventional": "^17.4.4",
d150756d 92 "@release-it/bumper": "^4.0.2",
435bc05a 93 "@release-it/keep-a-changelog": "^3.1.0",
8f98d75d
JB
94 "@rollup/plugin-terser": "^0.4.0",
95 "@rollup/plugin-typescript": "^11.0.0",
6bfbaa33
JB
96 "@types/node": "^18.15.3",
97 "@typescript-eslint/eslint-plugin": "^5.55.0",
98 "@typescript-eslint/parser": "^5.55.0",
ca6c7d70 99 "benny": "^3.7.1",
116609a3 100 "c8": "^7.13.0",
1de9741f 101 "eslint": "^8.36.0",
0e64ff58 102 "eslint-config-standard": "^17.0.0",
6bfbaa33 103 "eslint-config-standard-with-typescript": "^34.0.1",
b8adcb2a 104 "eslint-define-config": "^1.17.0",
8f745a43 105 "eslint-import-resolver-typescript": "^3.5.3",
6853a353 106 "eslint-plugin-import": "^2.27.5",
6bfbaa33 107 "eslint-plugin-jsdoc": "^40.0.3",
8f745a43 108 "eslint-plugin-n": "^15.6.1",
2f8c5b5c 109 "eslint-plugin-promise": "^6.1.1",
06f7a33b 110 "eslint-plugin-spellcheck": "^0.0.20",
38e795c1 111 "eslint-plugin-tsdoc": "^0.2.17",
3a4f6b79 112 "expect": "^29.5.0",
a974afa6 113 "husky": "^8.0.3",
54541487 114 "lint-staged": "^13.2.0",
7595e433 115 "microtime": "^3.1.1",
5d5a6f8f 116 "mocha": "^10.2.0",
5080f39d 117 "mochawesome": "^7.1.3",
637fb030 118 "prettier": "^2.8.4",
fb78f5c0 119 "prettier-plugin-organize-imports": "^3.2.2",
9a0209e4 120 "release-it": "^15.9.0",
54541487 121 "rollup": "^3.19.1",
f45e4999 122 "rollup-plugin-analyzer": "^4.0.0",
5ea22628 123 "rollup-plugin-command": "^1.1.3",
660940b0 124 "rollup-plugin-delete": "^2.0.0",
6bfbaa33 125 "sinon": "^15.0.2",
eae1fc25 126 "source-map-support": "^0.5.21",
c9102ab4 127 "ts-standard": "^12.0.2",
9a0209e4
JB
128 "typedoc": "^0.23.27",
129 "typescript": "^5.0.2"
777b7824 130 }
6dc67cda 131}