Add protected removeWorker member function (#124)
[poolifier.git] / package.json
CommitLineData
6dc67cda 1{
5648b9ca 2 "name": "poolifier",
ed1e08f2 3 "version": "1.2.1",
973cde26 4 "description": "Library on top of node js worker threads that implement various worker pools type",
4ade5f1f 5 "main": "lib/index.js",
6dc67cda 6 "scripts": {
660940b0
JB
7 "build": "rollup --config",
8 "build:dev": "rollup --config --environment BUILD:development",
583a27ce 9 "benchmark": "npm run build && node benchmarks/bench.js",
660940b0
JB
10 "benchmark:debug": "npm run build:dev && node -r source-map-support/register --inspect-brk benchmarks/bench.js",
11 "benchmark:debug:vscode": "node -r source-map-support/register benchmarks/bench.js",
50aa7901 12 "test": "npm run build && nyc mocha --exit --timeout 20000 tests/**/*.test.js",
660940b0
JB
13 "test:debug": "npm run build:dev && mocha -r source-map-support/register --inspect-brk --exit tests/**/*.test.js",
14 "test:debug:vscode": "mocha -r source-map-support/register --exit tests/**/*.test.js",
6c8617c5 15 "coverage": "nyc report --reporter=text-lcov | coveralls",
50aa7901 16 "coverage:html": "nyc --reporter=html mocha --exit --timeout 20000 tests/**/*.test.js",
fa699c42 17 "format": "prettier --loglevel silent --write .; prettierx --write .",
777b7824
S
18 "lint": "eslint .",
19 "lint:fix": "eslint . --fix"
6dc67cda 20 },
21 "repository": {
22 "type": "git",
81c5a5cb 23 "url": "git+https://github.com/pioardi/poolifier.git"
6dc67cda 24 },
25 "keywords": [
26 "node",
27 "thread-pool",
28 "worker-threads",
660940b0 29 "cluster",
6dc67cda 30 "performance",
31 "cpu",
973cde26 32 "computing",
33 "async-resource"
6dc67cda 34 ],
6dc67cda 35 "author": "pioardi",
7e4f7b97 36 "contributors": [
37 {
38 "name": "Christopher Quadflieg",
39 "email": "chrissi92@hotmail.de",
40 "url": "https://github.com/Shinigami92"
41 },
42 {
818f2180 43 "name": "Jérôme Benoit",
7c638181 44 "email": "jerome.benoit@piment-noir.org",
7e4f7b97 45 "url": "https://github.com/jerome-benoit"
46 }
47 ],
6dc67cda 48 "license": "MIT",
49 "bugs": {
81c5a5cb 50 "url": "https://github.com/pioardi/poolifier/issues"
6dc67cda 51 },
81c5a5cb 52 "homepage": "https://github.com/pioardi/poolifier#readme",
c2a9d1e6
S
53 "files": [
54 "lib"
55 ],
973cde26 56 "devDependencies": {
ebc664ac 57 "@types/node": "^14.14.25",
777b7824
S
58 "@typescript-eslint/eslint-plugin": "^4.15.0",
59 "@typescript-eslint/parser": "^4.15.0",
660940b0 60 "@wessberg/rollup-plugin-ts": "^1.3.8",
57df5469 61 "benchmark": "^2.1.4",
5ed1b3a8 62 "coveralls": "^3.1.0",
fa699c42 63 "eslint": "^7.19.0",
777b7824
S
64 "eslint-config-standard": "^16.0.2",
65 "eslint-plugin-import": "^2.22.1",
66 "eslint-plugin-node": "^11.1.0",
50aa7901 67 "eslint-plugin-prettierx": "^0.17.1",
777b7824 68 "eslint-plugin-promise": "^4.2.1",
5ed1b3a8 69 "expect": "^26.6.2",
777b7824 70 "mocha": "^8.2.1",
fa699c42 71 "mocha-lcov-reporter": "^1.3.0",
5ed1b3a8 72 "nyc": "^15.1.0",
fa699c42 73 "prettier": "^2.2.1",
777b7824
S
74 "prettier-plugin-organize-imports": "^1.1.1",
75 "prettierx": "^0.17.0",
660940b0
JB
76 "rollup": "^2.38.5",
77 "rollup-plugin-delete": "^2.0.0",
78 "source-map-support": "^0.5.19",
583a27ce
JB
79 "typescript": "^4.1.4",
80 "worker-threads-pool": "^2.0.0",
81 "workerpool": "^6.1.0"
da1f2de4
E
82 },
83 "engines": {
50aa7901
S
84 "node": ">=12.11.0",
85 "npm": ">=6.0.0 <7"
777b7824 86 }
6dc67cda 87}