Apply dependencies update
[poolifier.git] / package.json
... / ...
CommitLineData
1{
2 "name": "poolifier",
3 "version": "2.3.4",
4 "description": "A fast, easy to use Node.js Worker Thread Pool and Cluster Pool implementation",
5 "main": "lib/index.js",
6 "scripts": {
7 "prepare": "node prepare.js",
8 "build": "rollup --config --environment BUILD:development",
9 "build:typedoc": "rollup --config --environment BUILD:development --environment DOCUMENTATION",
10 "build:prod": "rollup --config",
11 "benchmark": "npm run build && node -r source-map-support/register benchmarks/internal/bench.js",
12 "benchmark:debug": "npm run build && node -r source-map-support/register --inspect benchmarks/internal/bench.js",
13 "benchmark:prod": "npm run build:prod && node -r source-map-support/register benchmarks/internal/bench.js",
14 "test": "npm run build && nyc mocha 'tests/**/*.test.js'",
15 "test:debug": "npm run build && mocha --no-parallel --inspect '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 "lint:report": "eslint . --cache --format json --output-file reports/eslint.json",
22 "release": "release-it",
23 "typedoc": "typedoc",
24 "sonar:properties": "./updateSonarProps.sh",
25 "prepublishOnly": "npm run build:prod"
26 },
27 "repository": {
28 "type": "git",
29 "url": "git+https://github.com/poolifier/poolifier.git"
30 },
31 "keywords": [
32 "node",
33 "pool",
34 "workers pool",
35 "threads pool",
36 "worker-threads",
37 "cluster",
38 "cluster worker",
39 "concurrency",
40 "performance",
41 "cpu",
42 "computing",
43 "async computing",
44 "async resource"
45 ],
46 "author": "pioardi",
47 "contributors": [
48 {
49 "name": "Christopher Quadflieg",
50 "email": "chrissi92@hotmail.de",
51 "url": "https://github.com/Shinigami92"
52 },
53 {
54 "name": "Jérôme Benoit",
55 "email": "jerome.benoit@piment-noir.org",
56 "url": "https://github.com/jerome-benoit"
57 }
58 ],
59 "license": "MIT",
60 "bugs": {
61 "url": "https://github.com/poolifier/poolifier/issues"
62 },
63 "homepage": "https://github.com/poolifier/poolifier#readme",
64 "files": [
65 "lib"
66 ],
67 "devDependencies": {
68 "@release-it/keep-a-changelog": "^3.1.0",
69 "@types/node": "^18.11.1",
70 "@typescript-eslint/eslint-plugin": "^5.40.1",
71 "@typescript-eslint/parser": "^5.40.1",
72 "benchmark": "^2.1.4",
73 "eslint": "^8.25.0",
74 "eslint-config-standard": "^17.0.0",
75 "eslint-define-config": "^1.7.0",
76 "eslint-import-resolver-typescript": "^3.5.1",
77 "eslint-plugin-import": "^2.26.0",
78 "eslint-plugin-jsdoc": "^39.3.13",
79 "eslint-plugin-n": "^15.3.0",
80 "eslint-plugin-node": "^11.1.0",
81 "eslint-plugin-prettierx": "^0.18.0",
82 "eslint-plugin-promise": "^6.1.0",
83 "eslint-plugin-spellcheck": "^0.0.19",
84 "expect": "^29.2.1",
85 "husky": "^8.0.1",
86 "lint-staged": "^13.0.3",
87 "microtime": "^3.1.1",
88 "mocha": "^10.1.0",
89 "mochawesome": "^7.1.3",
90 "nyc": "^15.1.0",
91 "prettier": "^2.7.1",
92 "prettier-plugin-organize-imports": "^3.1.1",
93 "prettierx": "^0.18.3",
94 "release-it": "^15.5.0",
95 "rollup": "^3.2.3",
96 "rollup-plugin-analyzer": "^4.0.0",
97 "rollup-plugin-command": "^1.1.3",
98 "rollup-plugin-delete": "^2.0.0",
99 "rollup-plugin-istanbul": "^3.0.0",
100 "rollup-plugin-terser": "^7.0.2",
101 "rollup-plugin-ts": "^3.0.2",
102 "sinon": "^14.0.1",
103 "source-map-support": "^0.5.21",
104 "typedoc": "^0.23.17",
105 "typescript": "^4.8.4"
106 },
107 "engines": {
108 "node": ">=16.0.0",
109 "npm": ">=8.0.0"
110 }
111}