chore: v2.3.9
[poolifier.git] / package.json
... / ...
CommitLineData
1{
2 "name": "poolifier",
3 "version": "2.3.9",
4 "description": "A fast, easy to use Node.js Worker Thread Pool and Cluster Pool implementation",
5 "license": "MIT",
6 "exports": [
7 "lib/index.js",
8 "lib/index.mjs"
9 ],
10 "scripts": {
11 "prepare": "node prepare.js",
12 "build": "rollup --config --environment BUILD:development",
13 "build:typedoc": "rollup --config --environment BUILD:development --environment DOCUMENTATION",
14 "build:prod": "rollup --config",
15 "benchmark": "npm run build && node -r source-map-support/register benchmarks/internal/bench.js",
16 "benchmark:debug": "npm run build && node -r source-map-support/register --inspect benchmarks/internal/bench.js",
17 "benchmark:prod": "npm run build:prod && node -r source-map-support/register benchmarks/internal/bench.js",
18 "test": "npm run build && c8 mocha 'tests/**/*.test.js'",
19 "test:debug": "npm run build && mocha --no-parallel --inspect 'tests/**/*.test.js'",
20 "coverage": "c8 report --reporter=lcov",
21 "coverage:html": "c8 report --reporter=html",
22 "format": "prettier . --cache --write; ts-standard . --fix",
23 "lint": "eslint . --cache",
24 "lint:fix": "eslint . --cache --fix",
25 "lint:report": "eslint . --cache --format json --output-file reports/eslint.json",
26 "release": "release-it",
27 "typedoc": "typedoc",
28 "prepublishOnly": "npm run build:prod"
29 },
30 "ts-standard": {
31 "globals": [
32 "describe",
33 "it",
34 "before",
35 "after",
36 "beforeEach",
37 "afterEach"
38 ]
39 },
40 "engines": {
41 "node": ">=16.0.0",
42 "npm": ">=8.0.0"
43 },
44 "repository": {
45 "type": "git",
46 "url": "git+https://github.com/poolifier/poolifier.git"
47 },
48 "keywords": [
49 "node",
50 "pool",
51 "workers pool",
52 "threads pool",
53 "worker-threads",
54 "cluster",
55 "cluster worker",
56 "concurrency",
57 "performance",
58 "cpu",
59 "computing",
60 "async computing",
61 "async resource"
62 ],
63 "author": "pioardi",
64 "contributors": [
65 {
66 "name": "Christopher Quadflieg",
67 "email": "chrissi92@hotmail.de",
68 "url": "https://github.com/Shinigami92"
69 },
70 {
71 "name": "Jérôme Benoit",
72 "email": "jerome.benoit@piment-noir.org",
73 "url": "https://github.com/jerome-benoit"
74 }
75 ],
76 "funding": [
77 {
78 "type": "opencollective",
79 "url": "https://opencollective.com/poolifier"
80 }
81 ],
82 "bugs": {
83 "url": "https://github.com/poolifier/poolifier/issues"
84 },
85 "homepage": "https://github.com/poolifier/poolifier#readme",
86 "files": [
87 "lib"
88 ],
89 "devDependencies": {
90 "@commitlint/cli": "^17.4.4",
91 "@commitlint/config-conventional": "^17.4.4",
92 "@release-it/bumper": "^4.0.2",
93 "@release-it/keep-a-changelog": "^3.1.0",
94 "@rollup/plugin-terser": "^0.4.0",
95 "@rollup/plugin-typescript": "^11.0.0",
96 "@types/node": "^18.15.3",
97 "@typescript-eslint/eslint-plugin": "^5.55.0",
98 "@typescript-eslint/parser": "^5.55.0",
99 "benny": "^3.7.1",
100 "c8": "^7.13.0",
101 "eslint": "^8.36.0",
102 "eslint-config-standard": "^17.0.0",
103 "eslint-config-standard-with-typescript": "^34.0.1",
104 "eslint-define-config": "^1.17.0",
105 "eslint-import-resolver-typescript": "^3.5.3",
106 "eslint-plugin-import": "^2.27.5",
107 "eslint-plugin-jsdoc": "^40.0.3",
108 "eslint-plugin-n": "^15.6.1",
109 "eslint-plugin-promise": "^6.1.1",
110 "eslint-plugin-spellcheck": "^0.0.20",
111 "eslint-plugin-tsdoc": "^0.2.17",
112 "expect": "^29.5.0",
113 "husky": "^8.0.3",
114 "lint-staged": "^13.2.0",
115 "microtime": "^3.1.1",
116 "mocha": "^10.2.0",
117 "mochawesome": "^7.1.3",
118 "prettier": "^2.8.4",
119 "prettier-plugin-organize-imports": "^3.2.2",
120 "release-it": "^15.9.0",
121 "rollup": "^3.19.1",
122 "rollup-plugin-analyzer": "^4.0.0",
123 "rollup-plugin-command": "^1.1.3",
124 "rollup-plugin-delete": "^2.0.0",
125 "sinon": "^15.0.2",
126 "source-map-support": "^0.5.21",
127 "ts-standard": "^12.0.2",
128 "typedoc": "^0.23.27",
129 "typescript": "^5.0.2"
130 }
131}