Provide a cluster worker pool (#92)
[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": {
f045358d
S
7 "build": "npm run build:clean && tsc",
8 "build:clean": "rimraf lib",
583a27ce 9 "benchmark": "npm run build && node benchmarks/bench.js",
50aa7901
S
10 "test": "npm run build && nyc mocha --exit --timeout 20000 tests/**/*.test.js",
11 "test:debug": "mocha --inspect-brk --exit tests/**/*.test.js",
6c8617c5 12 "coverage": "nyc report --reporter=text-lcov | coveralls",
50aa7901 13 "coverage:html": "nyc --reporter=html mocha --exit --timeout 20000 tests/**/*.test.js",
fa699c42 14 "format": "prettier --loglevel silent --write .; prettierx --write .",
777b7824
S
15 "lint": "eslint .",
16 "lint:fix": "eslint . --fix"
6dc67cda 17 },
18 "repository": {
19 "type": "git",
81c5a5cb 20 "url": "git+https://github.com/pioardi/poolifier.git"
6dc67cda 21 },
22 "keywords": [
23 "node",
24 "thread-pool",
25 "worker-threads",
26 "performance",
27 "cpu",
973cde26 28 "computing",
29 "async-resource"
6dc67cda 30 ],
6dc67cda 31 "author": "pioardi",
7e4f7b97 32 "contributors": [
33 {
34 "name": "Christopher Quadflieg",
35 "email": "chrissi92@hotmail.de",
36 "url": "https://github.com/Shinigami92"
37 },
38 {
818f2180 39 "name": "Jérôme Benoit",
7c638181 40 "email": "jerome.benoit@piment-noir.org",
7e4f7b97 41 "url": "https://github.com/jerome-benoit"
42 }
43 ],
6dc67cda 44 "license": "MIT",
45 "bugs": {
81c5a5cb 46 "url": "https://github.com/pioardi/poolifier/issues"
6dc67cda 47 },
81c5a5cb 48 "homepage": "https://github.com/pioardi/poolifier#readme",
c2a9d1e6
S
49 "files": [
50 "lib"
51 ],
973cde26 52 "devDependencies": {
ebc664ac 53 "@types/node": "^14.14.25",
777b7824
S
54 "@typescript-eslint/eslint-plugin": "^4.15.0",
55 "@typescript-eslint/parser": "^4.15.0",
57df5469 56 "benchmark": "^2.1.4",
5ed1b3a8 57 "coveralls": "^3.1.0",
fa699c42 58 "eslint": "^7.19.0",
777b7824
S
59 "eslint-config-standard": "^16.0.2",
60 "eslint-plugin-import": "^2.22.1",
61 "eslint-plugin-node": "^11.1.0",
50aa7901 62 "eslint-plugin-prettierx": "^0.17.1",
777b7824 63 "eslint-plugin-promise": "^4.2.1",
5ed1b3a8 64 "expect": "^26.6.2",
777b7824 65 "mocha": "^8.2.1",
fa699c42 66 "mocha-lcov-reporter": "^1.3.0",
5ed1b3a8 67 "nyc": "^15.1.0",
fa699c42 68 "prettier": "^2.2.1",
777b7824
S
69 "prettier-plugin-organize-imports": "^1.1.1",
70 "prettierx": "^0.17.0",
4ade5f1f 71 "rimraf": "^3.0.2",
583a27ce
JB
72 "typescript": "^4.1.4",
73 "worker-threads-pool": "^2.0.0",
74 "workerpool": "^6.1.0"
da1f2de4
E
75 },
76 "engines": {
50aa7901
S
77 "node": ">=12.11.0",
78 "npm": ">=6.0.0 <7"
777b7824 79 }
6dc67cda 80}