Commit | Line | Data |
---|---|---|
6dc67cda | 1 | { |
4f19da60 | 2 | "$schema": "https://json.schemastore.org/package", |
5648b9ca | 3 | "name": "poolifier", |
39fb7ad0 | 4 | "version": "2.6.33", |
3eed0bf4 | 5 | "description": "Fast and small Node.js Worker_Threads and Cluster Worker Pool", |
479b44a7 | 6 | "license": "MIT", |
6abad580 | 7 | "main": "./lib/index.js", |
fe18768d JB |
8 | "exports": { |
9 | ".": { | |
9606b474 | 10 | "types": "./lib/index.d.ts", |
6abad580 JB |
11 | "require": "./lib/index.js", |
12 | "import": "./lib/index.mjs" | |
fe18768d JB |
13 | } |
14 | }, | |
6dc67cda | 15 | "scripts": { |
ebfea361 | 16 | "preinstall": "npx --yes only-allow pnpm", |
86092b19 | 17 | "prepare": "node prepare.js", |
f4162974 | 18 | "build": "rollup --config --environment BUILD:development", |
9dc351aa JB |
19 | "build:analyze": "rollup --config --environment ANALYZE,BUILD:development", |
20 | "build:typedoc": "rollup --config --environment DOCUMENTATION,BUILD:development", | |
f4162974 | 21 | "build:prod": "rollup --config", |
8a970421 JB |
22 | "benchmark": "pnpm build && node -r source-map-support/register benchmarks/internal/bench.mjs", |
23 | "benchmark:debug": "pnpm build && node -r source-map-support/register --inspect benchmarks/internal/bench.mjs", | |
93dd056a | 24 | "benchmark:prod": "pnpm build:prod && benchmarks/internal/bench.mjs", |
bb8ed27c JB |
25 | "test": "pnpm build && c8 mocha 'tests/**/*.test.js'", |
26 | "test:debug": "pnpm build && mocha --no-parallel --inspect 'tests/**/*.test.js'", | |
0fd86768 JB |
27 | "coverage": "c8 report --reporter=lcov", |
28 | "coverage:html": "c8 report --reporter=html", | |
8ebe6c30 | 29 | "format": "rome format . --write; ts-standard . --fix", |
e99dbb69 JB |
30 | "lint": "eslint . --cache", |
31 | "lint:fix": "eslint . --cache --fix", | |
7d82d90e | 32 | "lint:report": "eslint . --cache --format json --output-file reports/eslint.json", |
05a66b11 | 33 | "release": "release-it", |
2ab81545 | 34 | "typedoc": "node typedoc.mjs", |
bb8ed27c | 35 | "prepublishOnly": "pnpm build:prod" |
6dc67cda | 36 | }, |
78cea37e | 37 | "ts-standard": { |
ebca2afa JB |
38 | "globals": [ |
39 | "describe", | |
40 | "it", | |
41 | "before", | |
42 | "after", | |
43 | "beforeEach", | |
44 | "afterEach" | |
45 | ] | |
78cea37e JB |
46 | }, |
47 | "engines": { | |
9e45c2c4 | 48 | "node": ">=16.14.0", |
0fb30db7 | 49 | "pnpm": ">=8.6.0" |
78cea37e | 50 | }, |
bc3227d8 | 51 | "volta": { |
6ed16e54 | 52 | "node": "20.5.1", |
2f034ea6 | 53 | "pnpm": "8.6.12" |
bc3227d8 | 54 | }, |
6dc67cda | 55 | "repository": { |
56 | "type": "git", | |
6ccc1262 | 57 | "url": "git+https://github.com/poolifier/poolifier.git" |
6dc67cda | 58 | }, |
59 | "keywords": [ | |
66ce9e2d JB |
60 | "nodejs", |
61 | "worker pool", | |
62 | "thread pool", | |
2fbe1783 | 63 | "worker_threads", |
660940b0 | 64 | "cluster", |
31b90205 | 65 | "concurrency", |
6dc67cda | 66 | "performance", |
67 | "cpu", | |
973cde26 | 68 | "computing", |
66ce9e2d JB |
69 | "scheduling", |
70 | "parallelism", | |
71 | "eventloop" | |
6dc67cda | 72 | ], |
6dc67cda | 73 | "author": "pioardi", |
7e4f7b97 | 74 | "contributors": [ |
75 | { | |
76 | "name": "Christopher Quadflieg", | |
77 | "email": "chrissi92@hotmail.de", | |
78 | "url": "https://github.com/Shinigami92" | |
79 | }, | |
80 | { | |
818f2180 | 81 | "name": "Jérôme Benoit", |
7c638181 | 82 | "email": "jerome.benoit@piment-noir.org", |
7e4f7b97 | 83 | "url": "https://github.com/jerome-benoit" |
84 | } | |
85 | ], | |
479b44a7 JB |
86 | "funding": [ |
87 | { | |
88 | "type": "opencollective", | |
89 | "url": "https://opencollective.com/poolifier" | |
09bf56a0 JB |
90 | }, |
91 | { | |
92 | "type": "github", | |
93 | "url": "https://github.com/sponsors/poolifier" | |
479b44a7 JB |
94 | } |
95 | ], | |
6dc67cda | 96 | "bugs": { |
6ccc1262 | 97 | "url": "https://github.com/poolifier/poolifier/issues" |
6dc67cda | 98 | }, |
6ccc1262 | 99 | "homepage": "https://github.com/poolifier/poolifier#readme", |
ebca2afa JB |
100 | "files": [ |
101 | "lib" | |
102 | ], | |
c6bcaac6 JB |
103 | "pnpm": { |
104 | "overrides": { | |
105 | "semver": "^7.5.3" | |
106 | } | |
107 | }, | |
973cde26 | 108 | "devDependencies": { |
006b98fe | 109 | "@commitlint/cli": "^17.7.1", |
214804c3 | 110 | "@commitlint/config-conventional": "^17.7.0", |
7d1ac235 | 111 | "@release-it/bumper": "^5.1.0", |
b80e10df | 112 | "@release-it/keep-a-changelog": "^4.0.0", |
4745ba4a | 113 | "@rollup/plugin-terser": "^0.4.3", |
af64732b | 114 | "@rollup/plugin-typescript": "^11.1.2", |
c3eca146 | 115 | "@types/node": "^20.5.3", |
bffe8359 JB |
116 | "@typescript-eslint/eslint-plugin": "^6.4.1", |
117 | "@typescript-eslint/parser": "^6.4.1", | |
ca6c7d70 | 118 | "benny": "^3.7.1", |
21554946 | 119 | "c8": "^8.0.1", |
5886a6e8 | 120 | "eslint": "^8.47.0", |
458509ad | 121 | "eslint-config-standard": "^17.1.0", |
dd92a715 | 122 | "eslint-config-standard-with-typescript": "^38.0.0", |
0223b392 | 123 | "eslint-define-config": "^1.23.0", |
214804c3 | 124 | "eslint-import-resolver-typescript": "^3.6.0", |
a6d60641 | 125 | "eslint-plugin-import": "^2.28.1", |
14dca8ad | 126 | "eslint-plugin-jsdoc": "^46.5.0", |
c3eca146 | 127 | "eslint-plugin-n": "^16.0.2", |
2f8c5b5c | 128 | "eslint-plugin-promise": "^6.1.1", |
06f7a33b | 129 | "eslint-plugin-spellcheck": "^0.0.20", |
38e795c1 | 130 | "eslint-plugin-tsdoc": "^0.2.17", |
14dca8ad | 131 | "expect": "^29.6.3", |
a974afa6 | 132 | "husky": "^8.0.3", |
14dca8ad | 133 | "lint-staged": "^14.0.1", |
7595e433 | 134 | "microtime": "^3.1.1", |
5d5a6f8f | 135 | "mocha": "^10.2.0", |
5080f39d | 136 | "mochawesome": "^7.1.3", |
f78ce869 | 137 | "prettier": "^3.0.2", |
63ff88a9 | 138 | "release-it": "^16.1.5", |
c3eca146 | 139 | "rollup": "^3.28.1", |
f45e4999 | 140 | "rollup-plugin-analyzer": "^4.0.0", |
5ea22628 | 141 | "rollup-plugin-command": "^1.1.3", |
660940b0 | 142 | "rollup-plugin-delete": "^2.0.0", |
8ebe6c30 | 143 | "rome": "^12.1.3", |
501f774f | 144 | "sinon": "^15.2.0", |
eae1fc25 | 145 | "source-map-support": "^0.5.21", |
c9102ab4 | 146 | "ts-standard": "^12.0.2", |
25038f6a | 147 | "typedoc": "^0.24.8", |
4b00bdc1 | 148 | "typescript": "^5.1.6" |
777b7824 | 149 | } |
6dc67cda | 150 | } |