docs: generate documentation
[poolifier.git] / package.json
1 {
2 "$schema": "https://json.schemastore.org/package",
3 "name": "poolifier",
4 "version": "3.1.14",
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; eslint . --cache --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 "engines": {
39 "node": ">=18.0.0",
40 "pnpm": ">=8.6.0"
41 },
42 "volta": {
43 "node": "20.10.0",
44 "pnpm": "8.13.1"
45 },
46 "repository": {
47 "type": "git",
48 "url": "https://github.com/poolifier/poolifier.git"
49 },
50 "keywords": [
51 "nodejs",
52 "worker pool",
53 "thread pool",
54 "worker_threads",
55 "cluster",
56 "concurrency",
57 "performance",
58 "cpu",
59 "computing",
60 "scheduling",
61 "parallelism",
62 "eventloop"
63 ],
64 "author": {
65 "name": "Alessandro Pio Ardizio",
66 "email": "alessandroardizio94@gmail.com",
67 "url": "https://github.com/pioardi"
68 },
69 "contributors": [
70 {
71 "name": "Christopher Quadflieg",
72 "email": "chrissi92@hotmail.de",
73 "url": "https://github.com/Shinigami92"
74 },
75 {
76 "name": "Jérôme Benoit",
77 "email": "jerome.benoit@piment-noir.org",
78 "url": "https://github.com/jerome-benoit"
79 }
80 ],
81 "funding": [
82 {
83 "type": "opencollective",
84 "url": "https://opencollective.com/poolifier"
85 },
86 {
87 "type": "github",
88 "url": "https://github.com/sponsors/poolifier"
89 }
90 ],
91 "bugs": {
92 "url": "https://github.com/poolifier/poolifier/issues"
93 },
94 "homepage": "https://github.com/poolifier/poolifier#readme",
95 "files": [
96 "lib"
97 ],
98 "pnpm": {
99 "overrides": {
100 "semver": "^7.5.3"
101 }
102 },
103 "devDependencies": {
104 "@biomejs/biome": "^1.4.1",
105 "@commitlint/cli": "^18.4.3",
106 "@commitlint/config-conventional": "^18.4.3",
107 "@release-it/bumper": "^6.0.1",
108 "@release-it/keep-a-changelog": "^5.0.0",
109 "@rollup/plugin-terser": "^0.4.4",
110 "@rollup/plugin-typescript": "^11.1.5",
111 "@types/node": "^20.10.6",
112 "@typescript-eslint/eslint-plugin": "^6.16.0",
113 "@typescript-eslint/parser": "^6.16.0",
114 "benchmark": "^2.1.4",
115 "c8": "^8.0.1",
116 "cross-env": "^7.0.3",
117 "eslint": "^8.56.0",
118 "eslint-config-standard": "^17.1.0",
119 "eslint-config-standard-with-typescript": "^43.0.0",
120 "eslint-define-config": "^2.1.0",
121 "eslint-import-resolver-typescript": "^3.6.1",
122 "eslint-plugin-import": "^2.29.1",
123 "eslint-plugin-jsdoc": "^47.0.2",
124 "eslint-plugin-n": "^16.6.0",
125 "eslint-plugin-promise": "^6.1.1",
126 "eslint-plugin-spellcheck": "^0.0.20",
127 "eslint-plugin-tsdoc": "^0.2.17",
128 "expect": "^29.7.0",
129 "husky": "^8.0.3",
130 "lint-staged": "^15.2.0",
131 "microtime": "^3.1.1",
132 "mocha": "^10.2.0",
133 "mochawesome": "^7.1.3",
134 "prettier": "^3.1.1",
135 "release-it": "^17.0.1",
136 "rollup": "^4.9.2",
137 "rollup-plugin-analyzer": "^4.0.0",
138 "rollup-plugin-command": "^1.1.3",
139 "rollup-plugin-delete": "^2.0.0",
140 "rollup-plugin-dts": "^6.1.0",
141 "sinon": "^17.0.1",
142 "typedoc": "^0.25.5",
143 "typescript": "~5.3.3"
144 }
145 }