Commit | Line | Data |
---|---|---|
6dc67cda | 1 | { |
5648b9ca | 2 | "name": "poolifier", |
936d53ec | 3 | "version": "2.4.11", |
31d1ddd9 | 4 | "description": "A fast, easy to use Node.js Worker Thread Pool and Cluster Pool implementation", |
479b44a7 | 5 | "license": "MIT", |
6abad580 | 6 | "main": "./lib/index.js", |
fe18768d JB |
7 | "exports": { |
8 | ".": { | |
6abad580 JB |
9 | "require": "./lib/index.js", |
10 | "import": "./lib/index.mjs" | |
fe18768d JB |
11 | } |
12 | }, | |
6dc67cda | 13 | "scripts": { |
ebfea361 | 14 | "preinstall": "npx --yes only-allow pnpm", |
86092b19 | 15 | "prepare": "node prepare.js", |
f4162974 | 16 | "build": "rollup --config --environment BUILD:development", |
7c0ba920 | 17 | "build:typedoc": "rollup --config --environment BUILD:development --environment DOCUMENTATION", |
f4162974 | 18 | "build:prod": "rollup --config", |
bb8ed27c JB |
19 | "benchmark": "pnpm build && node -r source-map-support/register benchmarks/internal/bench.js", |
20 | "benchmark:debug": "pnpm build && node -r source-map-support/register --inspect benchmarks/internal/bench.js", | |
21 | "benchmark:prod": "pnpm build:prod && node -r source-map-support/register benchmarks/internal/bench.js", | |
22 | "test": "pnpm build && c8 mocha 'tests/**/*.test.js'", | |
23 | "test:debug": "pnpm build && mocha --no-parallel --inspect 'tests/**/*.test.js'", | |
0fd86768 JB |
24 | "coverage": "c8 report --reporter=lcov", |
25 | "coverage:html": "c8 report --reporter=html", | |
e47bed93 | 26 | "format": "prettier . --cache --write; ts-standard . --fix", |
e99dbb69 JB |
27 | "lint": "eslint . --cache", |
28 | "lint:fix": "eslint . --cache --fix", | |
7d82d90e | 29 | "lint:report": "eslint . --cache --format json --output-file reports/eslint.json", |
05a66b11 | 30 | "release": "release-it", |
5ea22628 | 31 | "typedoc": "typedoc", |
bb8ed27c | 32 | "prepublishOnly": "pnpm build:prod" |
6dc67cda | 33 | }, |
78cea37e | 34 | "ts-standard": { |
af5204ed JB |
35 | "globals": [ |
36 | "describe", | |
37 | "it", | |
38 | "before", | |
39 | "after", | |
40 | "beforeEach", | |
41 | "afterEach" | |
78cea37e JB |
42 | ] |
43 | }, | |
44 | "engines": { | |
75f1fe47 JB |
45 | "node": ">=16.0.0", |
46 | "pnpm": ">= 8.0.0" | |
78cea37e | 47 | }, |
bc3227d8 | 48 | "volta": { |
ca9ab108 JB |
49 | "node": "20.0.0", |
50 | "pnpm": "8.3.1" | |
bc3227d8 | 51 | }, |
6dc67cda | 52 | "repository": { |
53 | "type": "git", | |
6ccc1262 | 54 | "url": "git+https://github.com/poolifier/poolifier.git" |
6dc67cda | 55 | }, |
56 | "keywords": [ | |
57 | "node", | |
31b90205 JB |
58 | "pool", |
59 | "workers pool", | |
60 | "threads pool", | |
6dc67cda | 61 | "worker-threads", |
660940b0 | 62 | "cluster", |
31b90205 JB |
63 | "cluster worker", |
64 | "concurrency", | |
6dc67cda | 65 | "performance", |
66 | "cpu", | |
973cde26 | 67 | "computing", |
31b90205 JB |
68 | "async computing", |
69 | "async resource" | |
6dc67cda | 70 | ], |
6dc67cda | 71 | "author": "pioardi", |
7e4f7b97 | 72 | "contributors": [ |
73 | { | |
74 | "name": "Christopher Quadflieg", | |
75 | "email": "chrissi92@hotmail.de", | |
76 | "url": "https://github.com/Shinigami92" | |
77 | }, | |
78 | { | |
818f2180 | 79 | "name": "Jérôme Benoit", |
7c638181 | 80 | "email": "jerome.benoit@piment-noir.org", |
7e4f7b97 | 81 | "url": "https://github.com/jerome-benoit" |
82 | } | |
83 | ], | |
479b44a7 JB |
84 | "funding": [ |
85 | { | |
86 | "type": "opencollective", | |
87 | "url": "https://opencollective.com/poolifier" | |
09bf56a0 JB |
88 | }, |
89 | { | |
90 | "type": "github", | |
91 | "url": "https://github.com/sponsors/poolifier" | |
479b44a7 JB |
92 | } |
93 | ], | |
6dc67cda | 94 | "bugs": { |
6ccc1262 | 95 | "url": "https://github.com/poolifier/poolifier/issues" |
6dc67cda | 96 | }, |
6ccc1262 | 97 | "homepage": "https://github.com/poolifier/poolifier#readme", |
c2a9d1e6 S |
98 | "files": [ |
99 | "lib" | |
100 | ], | |
973cde26 | 101 | "devDependencies": { |
e1b2837b JB |
102 | "@commitlint/cli": "^17.6.1", |
103 | "@commitlint/config-conventional": "^17.6.1", | |
d150756d | 104 | "@release-it/bumper": "^4.0.2", |
435bc05a | 105 | "@release-it/keep-a-changelog": "^3.1.0", |
fc7e6975 | 106 | "@rollup/plugin-terser": "^0.4.1", |
7903a4d1 | 107 | "@rollup/plugin-typescript": "^11.1.0", |
b37ebade | 108 | "@types/node": "^18.16.3", |
deb11eb3 JB |
109 | "@typescript-eslint/eslint-plugin": "^5.59.1", |
110 | "@typescript-eslint/parser": "^5.59.1", | |
ca6c7d70 | 111 | "benny": "^3.7.1", |
116609a3 | 112 | "c8": "^7.13.0", |
41aa7dcd | 113 | "eslint": "^8.39.0", |
0e64ff58 | 114 | "eslint-config-standard": "^17.0.0", |
6bfbaa33 | 115 | "eslint-config-standard-with-typescript": "^34.0.1", |
fa9fad5f | 116 | "eslint-define-config": "^1.20.0", |
8dafb5f1 | 117 | "eslint-import-resolver-typescript": "^3.5.5", |
6853a353 | 118 | "eslint-plugin-import": "^2.27.5", |
7c52ccff | 119 | "eslint-plugin-jsdoc": "^43.1.1", |
f5a6206a | 120 | "eslint-plugin-n": "^15.7.0", |
2f8c5b5c | 121 | "eslint-plugin-promise": "^6.1.1", |
06f7a33b | 122 | "eslint-plugin-spellcheck": "^0.0.20", |
38e795c1 | 123 | "eslint-plugin-tsdoc": "^0.2.17", |
3a4f6b79 | 124 | "expect": "^29.5.0", |
a974afa6 | 125 | "husky": "^8.0.3", |
fa9fad5f | 126 | "lint-staged": "^13.2.2", |
7595e433 | 127 | "microtime": "^3.1.1", |
5d5a6f8f | 128 | "mocha": "^10.2.0", |
5080f39d | 129 | "mochawesome": "^7.1.3", |
1637c0f1 | 130 | "prettier": "^2.8.8", |
c5bdad14 JB |
131 | "release-it": "^15.10.2", |
132 | "rollup": "^3.21.2", | |
f45e4999 | 133 | "rollup-plugin-analyzer": "^4.0.0", |
5ea22628 | 134 | "rollup-plugin-command": "^1.1.3", |
660940b0 | 135 | "rollup-plugin-delete": "^2.0.0", |
d4f7cdaf | 136 | "sinon": "^15.0.4", |
eae1fc25 | 137 | "source-map-support": "^0.5.21", |
c9102ab4 | 138 | "ts-standard": "^12.0.2", |
0a1679ba | 139 | "typedoc": "^0.24.6", |
aee46736 | 140 | "typescript": "^5.0.4" |
777b7824 | 141 | } |
6dc67cda | 142 | } |