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