build(ci): enable dependencies caching with pnpm
[poolifier.git] / package.json
CommitLineData
6dc67cda 1{
5648b9ca 2 "name": "poolifier",
15bb637a 3 "version": "2.4.10",
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",
186b35b6
JB
19 "benchmark": "pnpm run build && node -r source-map-support/register benchmarks/internal/bench.js",
20 "benchmark:debug": "pnpm run build && node -r source-map-support/register --inspect benchmarks/internal/bench.js",
21 "benchmark:prod": "pnpm run build:prod && node -r source-map-support/register benchmarks/internal/bench.js",
22 "test": "pnpm run build && c8 mocha 'tests/**/*.test.js'",
23 "test:debug": "pnpm run 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",
186b35b6 32 "prepublishOnly": "pnpm run 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": {
186b35b6 45 "node": ">=16.0.0"
78cea37e 46 },
bc3227d8
JB
47 "volta": {
48 "node": "20.0.0"
49 },
6dc67cda 50 "repository": {
51 "type": "git",
6ccc1262 52 "url": "git+https://github.com/poolifier/poolifier.git"
6dc67cda 53 },
54 "keywords": [
55 "node",
31b90205
JB
56 "pool",
57 "workers pool",
58 "threads pool",
6dc67cda 59 "worker-threads",
660940b0 60 "cluster",
31b90205
JB
61 "cluster worker",
62 "concurrency",
6dc67cda 63 "performance",
64 "cpu",
973cde26 65 "computing",
31b90205
JB
66 "async computing",
67 "async resource"
6dc67cda 68 ],
6dc67cda 69 "author": "pioardi",
7e4f7b97 70 "contributors": [
71 {
72 "name": "Christopher Quadflieg",
73 "email": "chrissi92@hotmail.de",
74 "url": "https://github.com/Shinigami92"
75 },
76 {
818f2180 77 "name": "Jérôme Benoit",
7c638181 78 "email": "jerome.benoit@piment-noir.org",
7e4f7b97 79 "url": "https://github.com/jerome-benoit"
80 }
81 ],
479b44a7
JB
82 "funding": [
83 {
84 "type": "opencollective",
85 "url": "https://opencollective.com/poolifier"
09bf56a0
JB
86 },
87 {
88 "type": "github",
89 "url": "https://github.com/sponsors/poolifier"
479b44a7
JB
90 }
91 ],
6dc67cda 92 "bugs": {
6ccc1262 93 "url": "https://github.com/poolifier/poolifier/issues"
6dc67cda 94 },
6ccc1262 95 "homepage": "https://github.com/poolifier/poolifier#readme",
c2a9d1e6
S
96 "files": [
97 "lib"
98 ],
973cde26 99 "devDependencies": {
e1b2837b
JB
100 "@commitlint/cli": "^17.6.1",
101 "@commitlint/config-conventional": "^17.6.1",
d150756d 102 "@release-it/bumper": "^4.0.2",
435bc05a 103 "@release-it/keep-a-changelog": "^3.1.0",
fc7e6975 104 "@rollup/plugin-terser": "^0.4.1",
7903a4d1 105 "@rollup/plugin-typescript": "^11.1.0",
526c970b 106 "@types/node": "^18.15.13",
9b3bf7c7
JB
107 "@typescript-eslint/eslint-plugin": "^5.59.0",
108 "@typescript-eslint/parser": "^5.59.0",
ca6c7d70 109 "benny": "^3.7.1",
116609a3 110 "c8": "^7.13.0",
41aa7dcd 111 "eslint": "^8.39.0",
0e64ff58 112 "eslint-config-standard": "^17.0.0",
6bfbaa33 113 "eslint-config-standard-with-typescript": "^34.0.1",
a20f0ba5 114 "eslint-define-config": "^1.18.0",
8dafb5f1 115 "eslint-import-resolver-typescript": "^3.5.5",
6853a353 116 "eslint-plugin-import": "^2.27.5",
d4f7cdaf 117 "eslint-plugin-jsdoc": "^43.0.7",
f5a6206a 118 "eslint-plugin-n": "^15.7.0",
2f8c5b5c 119 "eslint-plugin-promise": "^6.1.1",
06f7a33b 120 "eslint-plugin-spellcheck": "^0.0.20",
38e795c1 121 "eslint-plugin-tsdoc": "^0.2.17",
3a4f6b79 122 "expect": "^29.5.0",
a974afa6 123 "husky": "^8.0.3",
9f403c06 124 "lint-staged": "^13.2.1",
7595e433 125 "microtime": "^3.1.1",
5d5a6f8f 126 "mocha": "^10.2.0",
5080f39d 127 "mochawesome": "^7.1.3",
58a2073b 128 "prettier": "^2.8.7",
fb78f5c0 129 "prettier-plugin-organize-imports": "^3.2.2",
6fde2141 130 "release-it": "^15.10.1",
526c970b 131 "rollup": "^3.20.7",
f45e4999 132 "rollup-plugin-analyzer": "^4.0.0",
5ea22628 133 "rollup-plugin-command": "^1.1.3",
660940b0 134 "rollup-plugin-delete": "^2.0.0",
d4f7cdaf 135 "sinon": "^15.0.4",
eae1fc25 136 "source-map-support": "^0.5.21",
c9102ab4 137 "ts-standard": "^12.0.2",
afc34f0c 138 "typedoc": "^0.24.4",
aee46736 139 "typescript": "^5.0.4"
777b7824 140 }
6dc67cda 141}