v2.3.7
[poolifier.git] / package.json
1 {
2 "name": "poolifier",
3 "version": "2.3.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 "prepare": "node prepare.js",
8 "build": "rollup --config --environment BUILD:development",
9 "build:typedoc": "rollup --config --environment BUILD:development --environment DOCUMENTATION",
10 "build:prod": "rollup --config",
11 "benchmark": "npm run build && node -r source-map-support/register benchmarks/internal/bench.js",
12 "benchmark:debug": "npm run build && node -r source-map-support/register --inspect benchmarks/internal/bench.js",
13 "benchmark:prod": "npm run build:prod && node -r source-map-support/register benchmarks/internal/bench.js",
14 "test": "npm run build && c8 mocha 'tests/**/*.test.js'",
15 "test:debug": "npm run build && mocha --no-parallel --inspect 'tests/**/*.test.js'",
16 "coverage": "c8 report --reporter=lcov",
17 "coverage:html": "c8 report --reporter=html",
18 "lint": "eslint . --cache",
19 "lint:fix": "eslint . --cache --fix",
20 "lint:report": "eslint . --cache --format json --output-file reports/eslint.json",
21 "release": "release-it",
22 "typedoc": "typedoc",
23 "sonar:properties": "./updateSonarProps.sh",
24 "prepublishOnly": "npm run build:prod"
25 },
26 "ts-standard": {
27 "ignore": [
28 "tests/**/*.js"
29 ]
30 },
31 "engines": {
32 "node": ">=16.0.0",
33 "npm": ">=8.0.0"
34 },
35 "repository": {
36 "type": "git",
37 "url": "git+https://github.com/poolifier/poolifier.git"
38 },
39 "keywords": [
40 "node",
41 "pool",
42 "workers pool",
43 "threads pool",
44 "worker-threads",
45 "cluster",
46 "cluster worker",
47 "concurrency",
48 "performance",
49 "cpu",
50 "computing",
51 "async computing",
52 "async resource"
53 ],
54 "author": "pioardi",
55 "contributors": [
56 {
57 "name": "Christopher Quadflieg",
58 "email": "chrissi92@hotmail.de",
59 "url": "https://github.com/Shinigami92"
60 },
61 {
62 "name": "Jérôme Benoit",
63 "email": "jerome.benoit@piment-noir.org",
64 "url": "https://github.com/jerome-benoit"
65 }
66 ],
67 "license": "MIT",
68 "bugs": {
69 "url": "https://github.com/poolifier/poolifier/issues"
70 },
71 "homepage": "https://github.com/poolifier/poolifier#readme",
72 "files": [
73 "lib"
74 ],
75 "devDependencies": {
76 "@release-it/keep-a-changelog": "^3.1.0",
77 "@types/node": "^18.11.3",
78 "@typescript-eslint/eslint-plugin": "^5.40.1",
79 "@typescript-eslint/parser": "^5.40.1",
80 "benchmark": "^2.1.4",
81 "c8": "^7.12.0",
82 "eslint": "^8.26.0",
83 "eslint-config-standard": "^17.0.0",
84 "eslint-config-standard-with-typescript": "^23.0.0",
85 "eslint-define-config": "^1.7.0",
86 "eslint-import-resolver-typescript": "^3.5.2",
87 "eslint-plugin-import": "^2.26.0",
88 "eslint-plugin-jsdoc": "^39.3.19",
89 "eslint-plugin-n": "^15.3.0",
90 "eslint-plugin-promise": "^6.1.1",
91 "eslint-plugin-spellcheck": "^0.0.19",
92 "expect": "^29.2.1",
93 "husky": "^8.0.1",
94 "lint-staged": "^13.0.3",
95 "microtime": "^3.1.1",
96 "mocha": "^10.1.0",
97 "mochawesome": "^7.1.3",
98 "prettier": "^2.7.1",
99 "prettier-plugin-organize-imports": "^3.1.1",
100 "release-it": "^15.5.0",
101 "rollup": "^3.2.3",
102 "rollup-plugin-analyzer": "^4.0.0",
103 "rollup-plugin-command": "^1.1.3",
104 "rollup-plugin-delete": "^2.0.0",
105 "rollup-plugin-istanbul": "^3.0.0",
106 "rollup-plugin-terser": "^7.0.2",
107 "rollup-plugin-ts": "^3.0.2",
108 "sinon": "^14.0.1",
109 "source-map-support": "^0.5.21",
110 "ts-standard": "^12.0.1",
111 "typedoc": "^0.23.17",
112 "typescript": "^4.8.4"
113 }
114 }