docs: generate documentation
[poolifier.git] / package.json
1 {
2 "$schema": "https://json.schemastore.org/package",
3 "name": "poolifier",
4 "version": "3.1.13",
5 "description": "Fast and small Node.js Worker_Threads and Cluster Worker Pool",
6 "license": "MIT",
7 "type": "module",
8 "main": "./lib/index.cjs",
9 "exports": {
10 ".": {
11 "types": "./lib/index.d.ts",
12 "require": "./lib/index.cjs",
13 "import": "./lib/index.mjs"
14 }
15 },
16 "scripts": {
17 "preinstall": "npx --yes only-allow pnpm",
18 "prepare": "node prepare.mjs",
19 "build": "rollup --config --environment BUILD:development",
20 "build:prod": "rollup --config",
21 "build:typedoc": "rollup --config --environment DOCUMENTATION,BUILD:development",
22 "build:analyze": "rollup --config --environment ANALYZE,BUILD:development",
23 "benchmark": "pnpm build && node --max-old-space-size=8192 --enable-source-maps benchmarks/internal/bench.mjs",
24 "benchmark:prod": "pnpm build:prod && node --max-old-space-size=8192 --enable-source-maps benchmarks/internal/bench.mjs",
25 "benchmark:debug": "pnpm build && node --max-old-space-size=8192 --enable-source-maps --inspect benchmarks/internal/bench.mjs",
26 "test": "pnpm build --environment SOURCEMAP:false && cross-env NODE_ENV=test c8 mocha 'tests/**/*.test.mjs'",
27 "test:debug": "pnpm build && cross-env NODE_ENV=test mocha --no-parallel --inspect 'tests/**/*.test.mjs'",
28 "coverage": "c8 report --reporter=lcov",
29 "coverage:html": "c8 report --reporter=html",
30 "format": "biome format . --write; ts-standard . --fix",
31 "lint": "eslint . --cache",
32 "lint:fix": "eslint . --cache --fix",
33 "lint:report": "eslint . --cache --format json --output-file reports/eslint.json",
34 "release": "release-it",
35 "typedoc": "node typedoc.mjs",
36 "prepublishOnly": "pnpm build:prod"
37 },
38 "ts-standard": {
39 "globals": [
40 "describe",
41 "it",
42 "after",
43 "before",
44 "afterEach",
45 "beforeEach"
46 ]
47 },
48 "engines": {
49 "node": ">=18.0.0",
50 "pnpm": ">=8.6.0"
51 },
52 "volta": {
53 "node": "20.10.0",
54 "pnpm": "8.13.1"
55 },
56 "repository": {
57 "type": "git",
58 "url": "https://github.com/poolifier/poolifier.git"
59 },
60 "keywords": [
61 "nodejs",
62 "worker pool",
63 "thread pool",
64 "worker_threads",
65 "cluster",
66 "concurrency",
67 "performance",
68 "cpu",
69 "computing",
70 "scheduling",
71 "parallelism",
72 "eventloop"
73 ],
74 "author": {
75 "name": "Alessandro Pio Ardizio",
76 "email": "alessandroardizio94@gmail.com",
77 "url": "https://github.com/pioardi"
78 },
79 "contributors": [
80 {
81 "name": "Christopher Quadflieg",
82 "email": "chrissi92@hotmail.de",
83 "url": "https://github.com/Shinigami92"
84 },
85 {
86 "name": "Jérôme Benoit",
87 "email": "jerome.benoit@piment-noir.org",
88 "url": "https://github.com/jerome-benoit"
89 }
90 ],
91 "funding": [
92 {
93 "type": "opencollective",
94 "url": "https://opencollective.com/poolifier"
95 },
96 {
97 "type": "github",
98 "url": "https://github.com/sponsors/poolifier"
99 }
100 ],
101 "bugs": {
102 "url": "https://github.com/poolifier/poolifier/issues"
103 },
104 "homepage": "https://github.com/poolifier/poolifier#readme",
105 "files": [
106 "lib"
107 ],
108 "pnpm": {
109 "overrides": {
110 "semver": "^7.5.3"
111 }
112 },
113 "devDependencies": {
114 "@biomejs/biome": "^1.4.1",
115 "@commitlint/cli": "^18.4.3",
116 "@commitlint/config-conventional": "^18.4.3",
117 "@release-it/bumper": "^6.0.1",
118 "@release-it/keep-a-changelog": "^5.0.0",
119 "@rollup/plugin-terser": "^0.4.4",
120 "@rollup/plugin-typescript": "^11.1.5",
121 "@types/node": "^20.10.6",
122 "@typescript-eslint/eslint-plugin": "^6.16.0",
123 "@typescript-eslint/parser": "^6.16.0",
124 "benchmark": "^2.1.4",
125 "c8": "^8.0.1",
126 "cross-env": "^7.0.3",
127 "eslint": "^8.56.0",
128 "eslint-config-standard": "^17.1.0",
129 "eslint-config-standard-with-typescript": "^43.0.0",
130 "eslint-define-config": "^2.1.0",
131 "eslint-import-resolver-typescript": "^3.6.1",
132 "eslint-plugin-import": "^2.29.1",
133 "eslint-plugin-jsdoc": "^46.10.1",
134 "eslint-plugin-n": "^16.6.0",
135 "eslint-plugin-promise": "^6.1.1",
136 "eslint-plugin-spellcheck": "^0.0.20",
137 "eslint-plugin-tsdoc": "^0.2.17",
138 "expect": "^29.7.0",
139 "husky": "^8.0.3",
140 "lint-staged": "^15.2.0",
141 "microtime": "^3.1.1",
142 "mocha": "^10.2.0",
143 "mochawesome": "^7.1.3",
144 "prettier": "^3.1.1",
145 "release-it": "^17.0.1",
146 "rollup": "^4.9.2",
147 "rollup-plugin-analyzer": "^4.0.0",
148 "rollup-plugin-command": "^1.1.3",
149 "rollup-plugin-delete": "^2.0.0",
150 "rollup-plugin-dts": "^6.1.0",
151 "sinon": "^17.0.1",
152 "ts-standard": "^12.0.2",
153 "typedoc": "^0.25.4",
154 "typescript": "~5.3.3"
155 }
156 }