65d18ef1dd58289832cb46b8602b1fd74f50c1cc
[poolifier.git] / package.json
1 {
2 "name": "poolifier",
3 "version": "2.2.2",
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 && nyc mocha 'tests/**/*.test.js'",
15 "test:debug": "npm run build && mocha --no-parallel --inspect 'tests/**/*.test.js'",
16 "coverage": "nyc report --reporter=lcov",
17 "coverage:html": "nyc report --reporter=html",
18 "format": "prettier --loglevel silent --write .; prettierx --write .",
19 "lint": "eslint . --cache",
20 "lint:fix": "eslint . --cache --fix",
21 "typedoc": "typedoc",
22 "sonar:properties": "./updateSonarProps.sh",
23 "prepublishOnly": "npm run build:prod"
24 },
25 "repository": {
26 "type": "git",
27 "url": "git+https://github.com/poolifier/poolifier.git"
28 },
29 "keywords": [
30 "node",
31 "pool",
32 "workers pool",
33 "threads pool",
34 "worker-threads",
35 "cluster",
36 "cluster worker",
37 "concurrency",
38 "performance",
39 "cpu",
40 "computing",
41 "async computing",
42 "async resource"
43 ],
44 "author": "pioardi",
45 "contributors": [
46 {
47 "name": "Christopher Quadflieg",
48 "email": "chrissi92@hotmail.de",
49 "url": "https://github.com/Shinigami92"
50 },
51 {
52 "name": "Jérôme Benoit",
53 "email": "jerome.benoit@piment-noir.org",
54 "url": "https://github.com/jerome-benoit"
55 }
56 ],
57 "license": "MIT",
58 "bugs": {
59 "url": "https://github.com/poolifier/poolifier/issues"
60 },
61 "homepage": "https://github.com/poolifier/poolifier#readme",
62 "files": [
63 "lib"
64 ],
65 "devDependencies": {
66 "@types/node": "^18.8.3",
67 "@typescript-eslint/eslint-plugin": "^5.39.0",
68 "@typescript-eslint/parser": "^5.39.0",
69 "benchmark": "^2.1.4",
70 "eslint": "^8.25.0",
71 "eslint-config-standard": "^17.0.0",
72 "eslint-define-config": "^1.7.0",
73 "eslint-import-resolver-typescript": "^3.5.1",
74 "eslint-plugin-import": "^2.26.0",
75 "eslint-plugin-jsdoc": "^39.3.6",
76 "eslint-plugin-n": "^15.3.0",
77 "eslint-plugin-node": "^11.1.0",
78 "eslint-plugin-prettierx": "^0.18.0",
79 "eslint-plugin-promise": "^6.0.1",
80 "eslint-plugin-spellcheck": "^0.0.19",
81 "expect": "^29.1.2",
82 "husky": "^8.0.1",
83 "lint-staged": "^13.0.3",
84 "microtime": "^3.1.1",
85 "mocha": "^10.0.0",
86 "mochawesome": "^7.1.3",
87 "nyc": "^15.1.0",
88 "prettier": "^2.7.1",
89 "prettier-plugin-organize-imports": "^3.1.1",
90 "prettierx": "^0.18.3",
91 "rollup": "^2.79.1",
92 "rollup-plugin-analyzer": "^4.0.0",
93 "rollup-plugin-command": "^1.1.3",
94 "rollup-plugin-delete": "^2.0.0",
95 "rollup-plugin-istanbul": "^3.0.0",
96 "rollup-plugin-terser": "^7.0.2",
97 "rollup-plugin-ts": "^3.0.2",
98 "sinon": "^14.0.1",
99 "source-map-support": "^0.5.21",
100 "typedoc": "^0.23.15",
101 "typescript": "^4.8.4"
102 },
103 "engines": {
104 "node": ">=16.0.0",
105 "npm": ">=8.0.0"
106 }
107 }