4 "description": "A fast, easy to use Node.js Worker Thread Pool and Cluster Pool implementation",
5 "main": "lib/index.js",
7 "build": "rollup --config --environment BUILD:development",
8 "build:typedoc": "rollup --config --environment BUILD:development --environment DOCUMENTATION",
9 "build:prod": "rollup --config",
10 "benchmark": "npm run build && node -r source-map-support/register benchmarks/internal/bench.js",
11 "benchmark:debug": "npm run build && node -r source-map-support/register --inspect benchmarks/internal/bench.js",
12 "benchmark:prod": "npm run build:prod && node -r source-map-support/register benchmarks/internal/bench.js",
13 "test": "npm run build && nyc mocha 'tests/**/*.test.js'",
14 "test:debug": "npm run build && mocha --no-parallel --inspect 'tests/**/*.test.js'",
15 "test:prod": "npm run build:prod && nyc mocha '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",
22 "sonar:properties": "./updateSonarProps.sh",
23 "prepublishOnly": "npm run build:prod"
27 "url": "git+https://github.com/poolifier/poolifier.git"
47 "name": "Christopher Quadflieg",
48 "email": "chrissi92@hotmail.de",
49 "url": "https://github.com/Shinigami92"
52 "name": "Jérôme Benoit",
53 "email": "jerome.benoit@piment-noir.org",
54 "url": "https://github.com/jerome-benoit"
59 "url": "https://github.com/poolifier/poolifier/issues"
61 "homepage": "https://github.com/poolifier/poolifier#readme",
66 "@types/node": "^18.0.0",
67 "@typescript-eslint/eslint-plugin": "^5.29.0",
68 "@typescript-eslint/parser": "^5.29.0",
69 "benchmark": "^2.1.4",
71 "eslint-config-standard": "^17.0.0",
72 "eslint-define-config": "^1.5.1",
73 "eslint-import-resolver-typescript": "^3.1.0",
74 "eslint-plugin-import": "^2.26.0",
75 "eslint-plugin-jsdoc": "^39.3.3",
76 "eslint-plugin-n": "^15.2.3",
77 "eslint-plugin-node": "^11.1.0",
78 "eslint-plugin-prettierx": "^0.18.0",
79 "eslint-plugin-promise": "^6.0.0",
80 "eslint-plugin-spellcheck": "0.0.19",
82 "microtime": "^3.1.0",
84 "mochawesome": "^7.1.3",
87 "prettier-plugin-organize-imports": "^3.0.0",
88 "prettierx": "^0.18.3",
90 "rollup-plugin-analyzer": "^4.0.0",
91 "rollup-plugin-command": "^1.1.3",
92 "rollup-plugin-delete": "^2.0.0",
93 "rollup-plugin-istanbul": "^3.0.0",
94 "rollup-plugin-terser": "^7.0.2",
95 "rollup-plugin-ts": "^3.0.2",
96 "source-map-support": "^0.5.21",
97 "typedoc": "^0.22.18",
98 "typescript": "^4.7.4"