chore: v2.3.10-1
[poolifier.git] / package.json
1 {
2 "name": "poolifier",
3 "version": "2.3.10-1",
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 "prepare": "node prepare.js",
15 "build": "rollup --config --environment BUILD:development",
16 "build:typedoc": "rollup --config --environment BUILD:development --environment DOCUMENTATION",
17 "build:prod": "rollup --config",
18 "benchmark": "npm run build && node -r source-map-support/register benchmarks/internal/bench.js",
19 "benchmark:debug": "npm run build && node -r source-map-support/register --inspect benchmarks/internal/bench.js",
20 "benchmark:prod": "npm run build:prod && node -r source-map-support/register benchmarks/internal/bench.js",
21 "test": "npm run build && c8 mocha 'tests/**/*.test.js'",
22 "test:debug": "npm run build && mocha --no-parallel --inspect 'tests/**/*.test.js'",
23 "coverage": "c8 report --reporter=lcov",
24 "coverage:html": "c8 report --reporter=html",
25 "format": "prettier . --cache --write; ts-standard . --fix",
26 "lint": "eslint . --cache",
27 "lint:fix": "eslint . --cache --fix",
28 "lint:report": "eslint . --cache --format json --output-file reports/eslint.json",
29 "release": "release-it",
30 "typedoc": "typedoc",
31 "prepublishOnly": "npm run build:prod"
32 },
33 "ts-standard": {
34 "globals": [
35 "describe",
36 "it",
37 "before",
38 "after",
39 "beforeEach",
40 "afterEach"
41 ]
42 },
43 "engines": {
44 "node": ">=16.0.0",
45 "npm": ">=8.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 "bugs": {
86 "url": "https://github.com/poolifier/poolifier/issues"
87 },
88 "homepage": "https://github.com/poolifier/poolifier#readme",
89 "files": [
90 "lib"
91 ],
92 "devDependencies": {
93 "@commitlint/cli": "^17.4.4",
94 "@commitlint/config-conventional": "^17.4.4",
95 "@release-it/bumper": "^4.0.2",
96 "@release-it/keep-a-changelog": "^3.1.0",
97 "@rollup/plugin-terser": "^0.4.0",
98 "@rollup/plugin-typescript": "^11.0.0",
99 "@types/node": "^18.15.3",
100 "@typescript-eslint/eslint-plugin": "^5.55.0",
101 "@typescript-eslint/parser": "^5.55.0",
102 "benny": "^3.7.1",
103 "c8": "^7.13.0",
104 "eslint": "^8.36.0",
105 "eslint-config-standard": "^17.0.0",
106 "eslint-config-standard-with-typescript": "^34.0.1",
107 "eslint-define-config": "^1.17.0",
108 "eslint-import-resolver-typescript": "^3.5.3",
109 "eslint-plugin-import": "^2.27.5",
110 "eslint-plugin-jsdoc": "^40.0.3",
111 "eslint-plugin-n": "^15.6.1",
112 "eslint-plugin-promise": "^6.1.1",
113 "eslint-plugin-spellcheck": "^0.0.20",
114 "eslint-plugin-tsdoc": "^0.2.17",
115 "expect": "^29.5.0",
116 "husky": "^8.0.3",
117 "lint-staged": "^13.2.0",
118 "microtime": "^3.1.1",
119 "mocha": "^10.2.0",
120 "mochawesome": "^7.1.3",
121 "prettier": "^2.8.4",
122 "prettier-plugin-organize-imports": "^3.2.2",
123 "release-it": "^15.9.0",
124 "rollup": "^3.19.1",
125 "rollup-plugin-analyzer": "^4.0.0",
126 "rollup-plugin-command": "^1.1.3",
127 "rollup-plugin-delete": "^2.0.0",
128 "sinon": "^15.0.2",
129 "source-map-support": "^0.5.21",
130 "ts-standard": "^12.0.2",
131 "typedoc": "^0.23.27",
132 "typescript": "^5.0.2"
133 }
134 }