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