Remove unneeded rollup istanbul plugin
[poolifier.git] / package.json
CommitLineData
6dc67cda 1{
5648b9ca 2 "name": "poolifier",
995705ea 3 "version": "2.3.7",
31d1ddd9 4 "description": "A fast, easy to use Node.js Worker Thread Pool and Cluster Pool implementation",
4ade5f1f 5 "main": "lib/index.js",
6dc67cda 6 "scripts": {
86092b19 7 "prepare": "node prepare.js",
f4162974 8 "build": "rollup --config --environment BUILD:development",
7c0ba920 9 "build:typedoc": "rollup --config --environment BUILD:development --environment DOCUMENTATION",
f4162974 10 "build:prod": "rollup --config",
be0676b3
APA
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",
0fd86768 14 "test": "npm run build && c8 mocha 'tests/**/*.test.js'",
2c1331d6 15 "test:debug": "npm run build && mocha --no-parallel --inspect 'tests/**/*.test.js'",
0fd86768
JB
16 "coverage": "c8 report --reporter=lcov",
17 "coverage:html": "c8 report --reporter=html",
af5204ed 18 "format": "prettier . --write; ts-standard . --fix",
e99dbb69
JB
19 "lint": "eslint . --cache",
20 "lint:fix": "eslint . --cache --fix",
7d82d90e 21 "lint:report": "eslint . --cache --format json --output-file reports/eslint.json",
05a66b11 22 "release": "release-it",
5ea22628 23 "typedoc": "typedoc",
3ffada52 24 "sonar:properties": "./updateSonarProps.sh",
e41beb60 25 "prepublishOnly": "npm run build:prod"
6dc67cda 26 },
78cea37e 27 "ts-standard": {
af5204ed
JB
28 "globals": [
29 "describe",
30 "it",
31 "before",
32 "after",
33 "beforeEach",
34 "afterEach"
78cea37e
JB
35 ]
36 },
37 "engines": {
38 "node": ">=16.0.0",
39 "npm": ">=8.0.0"
40 },
6dc67cda 41 "repository": {
42 "type": "git",
6ccc1262 43 "url": "git+https://github.com/poolifier/poolifier.git"
6dc67cda 44 },
45 "keywords": [
46 "node",
31b90205
JB
47 "pool",
48 "workers pool",
49 "threads pool",
6dc67cda 50 "worker-threads",
660940b0 51 "cluster",
31b90205
JB
52 "cluster worker",
53 "concurrency",
6dc67cda 54 "performance",
55 "cpu",
973cde26 56 "computing",
31b90205
JB
57 "async computing",
58 "async resource"
6dc67cda 59 ],
6dc67cda 60 "author": "pioardi",
7e4f7b97 61 "contributors": [
62 {
63 "name": "Christopher Quadflieg",
64 "email": "chrissi92@hotmail.de",
65 "url": "https://github.com/Shinigami92"
66 },
67 {
818f2180 68 "name": "Jérôme Benoit",
7c638181 69 "email": "jerome.benoit@piment-noir.org",
7e4f7b97 70 "url": "https://github.com/jerome-benoit"
71 }
72 ],
6dc67cda 73 "license": "MIT",
74 "bugs": {
6ccc1262 75 "url": "https://github.com/poolifier/poolifier/issues"
6dc67cda 76 },
6ccc1262 77 "homepage": "https://github.com/poolifier/poolifier#readme",
c2a9d1e6
S
78 "files": [
79 "lib"
80 ],
973cde26 81 "devDependencies": {
435bc05a 82 "@release-it/keep-a-changelog": "^3.1.0",
eab90243 83 "@types/node": "^18.11.3",
a3f1e7ff 84 "@typescript-eslint/eslint-plugin": "^5.40.1",
6c4fe9bc 85 "@typescript-eslint/parser": "^5.40.1",
ca6c7d70 86 "benny": "^3.7.1",
0fd86768 87 "c8": "^7.12.0",
17b0cc58 88 "eslint": "^8.26.0",
0e64ff58 89 "eslint-config-standard": "^17.0.0",
78cea37e 90 "eslint-config-standard-with-typescript": "^23.0.0",
88b0ada8 91 "eslint-define-config": "^1.7.0",
eab90243 92 "eslint-import-resolver-typescript": "^3.5.2",
c18b85a9 93 "eslint-plugin-import": "^2.26.0",
fb7b2921 94 "eslint-plugin-jsdoc": "^39.3.20",
86eab0d6 95 "eslint-plugin-n": "^15.3.0",
2f8c5b5c 96 "eslint-plugin-promise": "^6.1.1",
26a2bc61 97 "eslint-plugin-spellcheck": "^0.0.19",
6c4fe9bc 98 "expect": "^29.2.1",
86092b19
JB
99 "husky": "^8.0.1",
100 "lint-staged": "^13.0.3",
7595e433 101 "microtime": "^3.1.1",
20d33cbf 102 "mocha": "^10.1.0",
5080f39d 103 "mochawesome": "^7.1.3",
815d4289 104 "prettier": "^2.7.1",
138cda23 105 "prettier-plugin-organize-imports": "^3.1.1",
435bc05a 106 "release-it": "^15.5.0",
6c4fe9bc 107 "rollup": "^3.2.3",
f45e4999 108 "rollup-plugin-analyzer": "^4.0.0",
5ea22628 109 "rollup-plugin-command": "^1.1.3",
660940b0 110 "rollup-plugin-delete": "^2.0.0",
f45e4999 111 "rollup-plugin-terser": "^7.0.2",
815d4289 112 "rollup-plugin-ts": "^3.0.2",
a3809289 113 "sinon": "^14.0.1",
eae1fc25 114 "source-map-support": "^0.5.21",
78cea37e 115 "ts-standard": "^12.0.1",
6c4fe9bc 116 "typedoc": "^0.23.17",
dcfd671a 117 "typescript": "^4.8.4"
777b7824 118 }
6dc67cda 119}