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