Version 2.2.2
[poolifier.git] / package.json
1 {
2 "name": "poolifier",
3 "version": "2.2.2",
4 "description": "A fast, easy to use Node.js Worker Thread Pool and Cluster Pool implementation",
5 "main": "lib/index.js",
6 "scripts": {
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 "coverage": "nyc report --reporter=lcov",
16 "coverage:html": "nyc report --reporter=html",
17 "format": "prettier --loglevel silent --write .; prettierx --write .",
18 "lint": "eslint . --cache",
19 "lint:fix": "eslint . --cache --fix",
20 "typedoc": "typedoc",
21 "sonar:properties": "./updateSonarProps.sh",
22 "prepublishOnly": "npm run build:prod"
23 },
24 "repository": {
25 "type": "git",
26 "url": "git+https://github.com/poolifier/poolifier.git"
27 },
28 "keywords": [
29 "node",
30 "pool",
31 "workers pool",
32 "threads pool",
33 "worker-threads",
34 "cluster",
35 "cluster worker",
36 "concurrency",
37 "performance",
38 "cpu",
39 "computing",
40 "async computing",
41 "async resource"
42 ],
43 "author": "pioardi",
44 "contributors": [
45 {
46 "name": "Christopher Quadflieg",
47 "email": "chrissi92@hotmail.de",
48 "url": "https://github.com/Shinigami92"
49 },
50 {
51 "name": "Jérôme Benoit",
52 "email": "jerome.benoit@piment-noir.org",
53 "url": "https://github.com/jerome-benoit"
54 }
55 ],
56 "license": "MIT",
57 "bugs": {
58 "url": "https://github.com/poolifier/poolifier/issues"
59 },
60 "homepage": "https://github.com/poolifier/poolifier#readme",
61 "files": [
62 "lib"
63 ],
64 "devDependencies": {
65 "@types/node": "^18.8.3",
66 "@typescript-eslint/eslint-plugin": "^5.39.0",
67 "@typescript-eslint/parser": "^5.39.0",
68 "benchmark": "^2.1.4",
69 "eslint": "^8.25.0",
70 "eslint-config-standard": "^17.0.0",
71 "eslint-define-config": "^1.7.0",
72 "eslint-import-resolver-typescript": "^3.5.1",
73 "eslint-plugin-import": "^2.26.0",
74 "eslint-plugin-jsdoc": "^39.3.6",
75 "eslint-plugin-n": "^15.3.0",
76 "eslint-plugin-node": "^11.1.0",
77 "eslint-plugin-prettierx": "^0.18.0",
78 "eslint-plugin-promise": "^6.0.1",
79 "eslint-plugin-spellcheck": "^0.0.19",
80 "expect": "^29.1.2",
81 "microtime": "^3.1.1",
82 "mocha": "^10.0.0",
83 "mochawesome": "^7.1.3",
84 "nyc": "^15.1.0",
85 "prettier": "^2.7.1",
86 "prettier-plugin-organize-imports": "^3.1.1",
87 "prettierx": "^0.18.3",
88 "rollup": "^2.79.1",
89 "rollup-plugin-analyzer": "^4.0.0",
90 "rollup-plugin-command": "^1.1.3",
91 "rollup-plugin-delete": "^2.0.0",
92 "rollup-plugin-istanbul": "^3.0.0",
93 "rollup-plugin-terser": "^7.0.2",
94 "rollup-plugin-ts": "^3.0.2",
95 "sinon": "^14.0.1",
96 "source-map-support": "^0.5.21",
97 "typedoc": "^0.23.15",
98 "typescript": "^4.8.4"
99 },
100 "engines": {
101 "node": ">=16.0.0",
102 "npm": ">=8.0.0"
103 }
104 }