Make the documentation less worker-threads centric. (#183)
[poolifier.git] / package.json
1 {
2 "name": "poolifier",
3 "version": "2.0.0",
4 "description": "Library on top of node js worker threads that implement various worker pools type",
5 "main": "lib/index.js",
6 "scripts": {
7 "build": "rollup --config --environment BUILD:development",
8 "build:prod": "rollup --config",
9 "benchmark": "npm run build && node -r source-map-support/register benchmarks/bench.js",
10 "benchmark:debug": "npm run build && node -r source-map-support/register --inspect benchmarks/bench.js",
11 "benchmark:prod": "npm run build:prod && node -r source-map-support/register benchmarks/bench.js",
12 "test": "npm run build && nyc mocha -r source-map-support/register --exit --timeout 20000 --parallel 'tests/**/*.test.js'",
13 "test:debug": "npm run build && mocha -r source-map-support/register --inspect --exit --timeout 20000 'tests/**/*.test.js'",
14 "test:prod": "npm run build:prod && nyc mocha -r source-map-support/register --exit --timeout 20000 'tests/**/*.test.js'",
15 "sonar": "sonar-scanner",
16 "coverage": "nyc report --reporter=lcov",
17 "coverage:html": "nyc report --reporter=html",
18 "format": "prettier --loglevel silent --write .; prettierx --write .",
19 "lint": "eslint .",
20 "lint:fix": "eslint . --fix"
21 },
22 "repository": {
23 "type": "git",
24 "url": "git+https://github.com/pioardi/poolifier.git"
25 },
26 "keywords": [
27 "node",
28 "pool",
29 "workers pool",
30 "threads pool",
31 "worker-threads",
32 "cluster",
33 "cluster worker",
34 "concurrency",
35 "performance",
36 "cpu",
37 "computing",
38 "async computing",
39 "async resource"
40 ],
41 "author": "pioardi",
42 "contributors": [
43 {
44 "name": "Christopher Quadflieg",
45 "email": "chrissi92@hotmail.de",
46 "url": "https://github.com/Shinigami92"
47 },
48 {
49 "name": "Jérôme Benoit",
50 "email": "jerome.benoit@piment-noir.org",
51 "url": "https://github.com/jerome-benoit"
52 }
53 ],
54 "license": "MIT",
55 "bugs": {
56 "url": "https://github.com/pioardi/poolifier/issues"
57 },
58 "homepage": "https://github.com/pioardi/poolifier#readme",
59 "files": [
60 "lib"
61 ],
62 "devDependencies": {
63 "@types/node": "^14.14.28",
64 "@typescript-eslint/eslint-plugin": "^4.15.1",
65 "@typescript-eslint/parser": "^4.15.1",
66 "benchmark": "^2.1.4",
67 "eslint": "^7.20.0",
68 "eslint-config-standard": "^16.0.2",
69 "eslint-plugin-import": "^2.22.1",
70 "eslint-plugin-jsdoc": "^32.0.2",
71 "eslint-plugin-node": "^11.1.0",
72 "eslint-plugin-prettierx": "^0.17.1",
73 "eslint-plugin-promise": "^4.3.1",
74 "eslint-plugin-spellcheck": "0.0.17",
75 "expect": "^26.6.2",
76 "mocha": "^8.3.0",
77 "mocha-lcov-reporter": "^1.3.0",
78 "nyc": "^15.1.0",
79 "prettier": "^2.2.1",
80 "prettier-plugin-organize-imports": "^1.1.1",
81 "prettierx": "^0.17.0",
82 "rollup": "^2.39.0",
83 "rollup-plugin-analyzer": "^4.0.0",
84 "rollup-plugin-delete": "^2.0.0",
85 "rollup-plugin-terser": "^7.0.2",
86 "rollup-plugin-typescript2": "^0.29.0",
87 "sonar-scanner": "^3.1.0",
88 "source-map-support": "^0.5.19",
89 "typescript": "^4.1.5",
90 "worker-threads-pool": "^2.0.0",
91 "workerpool": "^6.1.0"
92 },
93 "engines": {
94 "node": ">=12.11.0",
95 "npm": ">=6.0.0 <7"
96 }
97 }