Integrate typedoc to generate code documentation. (#236)
[poolifier.git] / package.json
1 {
2 "name": "poolifier",
3 "version": "2.0.0-beta.7",
4 "description": "A fast, easy to use Node.js Worker Thread Pool and Cluster Pool implementation",
5 "main": "lib/index.js",
6 "scripts": {
7 "build": "rollup --config --environment BUILD:development",
8 "build:prod": "rollup --config",
9 "benchmark": "npm run build && node -r source-map-support/register benchmarks/internal/bench.js",
10 "benchmark:debug": "npm run build && node -r source-map-support/register --inspect benchmarks/internal/bench.js",
11 "benchmark:prod": "npm run build:prod && node -r source-map-support/register benchmarks/internal/bench.js",
12 "test": "npm run build && nyc mocha --parallel 'tests/**/*.test.js'",
13 "test:debug": "npm run build && mocha --inspect 'tests/**/*.test.js'",
14 "test:prod": "npm run build:prod && nyc mocha --parallel 'tests/**/*.test.js'",
15 "sonar": "sonar-scanner",
16 "coverage": "nyc report --reporter=lcov",
17 "coverage:html": "nyc report --reporter=html",
18 "format": "prettier --loglevel silent --write .; prettierx --write .",
19 "lint": "eslint .",
20 "lint:fix": "eslint . --fix",
21 "typedoc": "typedoc",
22 "prepublishOnly": "npm run build:prod"
23 },
24 "repository": {
25 "type": "git",
26 "url": "git+https://github.com/pioardi/poolifier.git"
27 },
28 "keywords": [
29 "node",
30 "pool",
31 "workers pool",
32 "threads pool",
33 "worker-threads",
34 "cluster",
35 "cluster worker",
36 "concurrency",
37 "performance",
38 "cpu",
39 "computing",
40 "async computing",
41 "async resource"
42 ],
43 "author": "pioardi",
44 "contributors": [
45 {
46 "name": "Christopher Quadflieg",
47 "email": "chrissi92@hotmail.de",
48 "url": "https://github.com/Shinigami92"
49 },
50 {
51 "name": "Jérôme Benoit",
52 "email": "jerome.benoit@piment-noir.org",
53 "url": "https://github.com/jerome-benoit"
54 }
55 ],
56 "license": "MIT",
57 "bugs": {
58 "url": "https://github.com/pioardi/poolifier/issues"
59 },
60 "homepage": "https://github.com/pioardi/poolifier#readme",
61 "files": [
62 "lib"
63 ],
64 "devDependencies": {
65 "@types/node": "^14.14.31",
66 "@typescript-eslint/eslint-plugin": "^4.15.2",
67 "@typescript-eslint/parser": "^4.15.2",
68 "benchmark": "^2.1.4",
69 "eslint": "^7.20.0",
70 "eslint-config-standard": "^16.0.2",
71 "eslint-plugin-import": "^2.22.1",
72 "eslint-plugin-jsdoc": "^32.2.0",
73 "eslint-plugin-node": "^11.1.0",
74 "eslint-plugin-prettierx": "^0.17.1",
75 "eslint-plugin-promise": "^4.3.1",
76 "eslint-plugin-spellcheck": "0.0.17",
77 "expect": "^26.6.2",
78 "microtime": "^3.0.0",
79 "mocha": "^8.3.0",
80 "mocha-lcov-reporter": "^1.3.0",
81 "nyc": "^15.1.0",
82 "prettier": "^2.2.1",
83 "prettier-plugin-organize-imports": "^1.1.1",
84 "prettierx": "^0.17.0",
85 "rollup": "^2.39.1",
86 "rollup-plugin-analyzer": "^4.0.0",
87 "rollup-plugin-command": "^1.1.3",
88 "rollup-plugin-delete": "^2.0.0",
89 "rollup-plugin-terser": "^7.0.2",
90 "rollup-plugin-typescript2": "^0.30.0",
91 "sonar-scanner": "^3.1.0",
92 "source-map-support": "^0.5.19",
93 "typedoc": "^0.20.28",
94 "typescript": "^4.2.2"
95 },
96 "engines": {
97 "node": ">=12.11.0",
98 "npm": ">=6.0.0 <7"
99 }
100 }