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 --parallel 'tests/**/*.test.js'",
14 "test:debug": "npm run build && mocha --inspect 'tests/**/*.test.js'",
15 "test:prod": "npm run build:prod && nyc mocha --parallel 'tests/**/*.test.js'",
16 "sonar": "sonar-scanner",
17 "coverage": "nyc report --reporter=lcov",
18 "coverage:html": "nyc report --reporter=html",
19 "format": "prettier --loglevel silent --write .; prettierx --write .",
21 "lint:fix": "eslint . --fix",
23 "prepublishOnly": "npm run build:prod"
27 "url": "git+https://github.com/pioardi/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/pioardi/poolifier/issues"
61 "homepage": "https://github.com/pioardi/poolifier#readme",
66 "@types/node": "^14.14.37",
67 "@typescript-eslint/eslint-plugin": "^4.21.0",
68 "@typescript-eslint/parser": "^4.21.0",
69 "benchmark": "^2.1.4",
71 "eslint-config-standard": "^16.0.2",
72 "eslint-define-config": "^1.0.6",
73 "eslint-plugin-import": "^2.22.1",
74 "eslint-plugin-jsdoc": "^32.3.0",
75 "eslint-plugin-node": "^11.1.0",
76 "eslint-plugin-prettierx": "^0.17.1",
77 "eslint-plugin-promise": "^4.3.1",
78 "eslint-plugin-spellcheck": "0.0.17",
80 "microtime": "^3.0.0",
82 "mocha-lcov-reporter": "^1.3.0",
85 "prettier-plugin-organize-imports": "^1.1.1",
86 "prettierx": "^0.17.0",
88 "rollup-plugin-analyzer": "^4.0.0",
89 "rollup-plugin-command": "^1.1.3",
90 "rollup-plugin-delete": "^2.0.0",
91 "rollup-plugin-terser": "^7.0.2",
92 "rollup-plugin-typescript2": "^0.30.0",
93 "sonar-scanner": "^3.1.0",
94 "source-map-support": "^0.5.19",
95 "typedoc": "^0.20.34",
96 "typescript": "^4.2.3"