Fixes to worker selection strategies
[poolifier.git] / package.json
1 {
2 "name": "poolifier",
3 "version": "2.3.2",
4 "description": "A fast, easy to use Node.js Worker Thread Pool and Cluster Pool implementation",
5 "main": "lib/index.js",
6 "scripts": {
7 "prepare": "node prepare.js",
8 "build": "rollup --config --environment BUILD:development",
9 "build:typedoc": "rollup --config --environment BUILD:development --environment DOCUMENTATION",
10 "build:prod": "rollup --config",
11 "benchmark": "npm run build && node -r source-map-support/register benchmarks/internal/bench.js",
12 "benchmark:debug": "npm run build && node -r source-map-support/register --inspect benchmarks/internal/bench.js",
13 "benchmark:prod": "npm run build:prod && node -r source-map-support/register benchmarks/internal/bench.js",
14 "test": "npm run build && nyc mocha 'tests/**/*.test.js'",
15 "test:debug": "npm run build && mocha --no-parallel --inspect 'tests/**/*.test.js'",
16 "coverage": "nyc report --reporter=lcov",
17 "coverage:html": "nyc report --reporter=html",
18 "format": "prettier --loglevel silent --write .; prettierx --write .",
19 "lint": "eslint . --cache",
20 "lint:fix": "eslint . --cache --fix",
21 "lint:report": "eslint . --cache --format json --output-file reports/eslint.json",
22 "typedoc": "typedoc",
23 "sonar:properties": "./updateSonarProps.sh",
24 "prepublishOnly": "npm run build:prod"
25 },
26 "repository": {
27 "type": "git",
28 "url": "git+https://github.com/poolifier/poolifier.git"
29 },
30 "keywords": [
31 "node",
32 "pool",
33 "workers pool",
34 "threads pool",
35 "worker-threads",
36 "cluster",
37 "cluster worker",
38 "concurrency",
39 "performance",
40 "cpu",
41 "computing",
42 "async computing",
43 "async resource"
44 ],
45 "author": "pioardi",
46 "contributors": [
47 {
48 "name": "Christopher Quadflieg",
49 "email": "chrissi92@hotmail.de",
50 "url": "https://github.com/Shinigami92"
51 },
52 {
53 "name": "Jérôme Benoit",
54 "email": "jerome.benoit@piment-noir.org",
55 "url": "https://github.com/jerome-benoit"
56 }
57 ],
58 "license": "MIT",
59 "bugs": {
60 "url": "https://github.com/poolifier/poolifier/issues"
61 },
62 "homepage": "https://github.com/poolifier/poolifier#readme",
63 "files": [
64 "lib"
65 ],
66 "devDependencies": {
67 "@types/node": "^18.8.5",
68 "@typescript-eslint/eslint-plugin": "^5.40.0",
69 "@typescript-eslint/parser": "^5.40.0",
70 "benchmark": "^2.1.4",
71 "eslint": "^8.25.0",
72 "eslint-config-standard": "^17.0.0",
73 "eslint-define-config": "^1.7.0",
74 "eslint-import-resolver-typescript": "^3.5.1",
75 "eslint-plugin-import": "^2.26.0",
76 "eslint-plugin-jsdoc": "^39.3.6",
77 "eslint-plugin-n": "^15.3.0",
78 "eslint-plugin-node": "^11.1.0",
79 "eslint-plugin-prettierx": "^0.18.0",
80 "eslint-plugin-promise": "^6.1.0",
81 "eslint-plugin-spellcheck": "^0.0.19",
82 "expect": "^29.2.0",
83 "husky": "^8.0.1",
84 "lint-staged": "^13.0.3",
85 "microtime": "^3.1.1",
86 "mocha": "^10.0.0",
87 "mochawesome": "^7.1.3",
88 "nyc": "^15.1.0",
89 "prettier": "^2.7.1",
90 "prettier-plugin-organize-imports": "^3.1.1",
91 "prettierx": "^0.18.3",
92 "rollup": "^3.1.0",
93 "rollup-plugin-analyzer": "^4.0.0",
94 "rollup-plugin-command": "^1.1.3",
95 "rollup-plugin-delete": "^2.0.0",
96 "rollup-plugin-istanbul": "^3.0.0",
97 "rollup-plugin-terser": "^7.0.2",
98 "rollup-plugin-ts": "^3.0.2",
99 "sinon": "^14.0.1",
100 "source-map-support": "^0.5.21",
101 "typedoc": "^0.23.16",
102 "typescript": "^4.8.4"
103 },
104 "engines": {
105 "node": ">=16.0.0",
106 "npm": ">=8.0.0"
107 }
108 }