build: switch rollup plugins to core ones
[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",
479b44a7 5 "license": "MIT",
4ade5f1f 6 "main": "lib/index.js",
6dc67cda 7 "scripts": {
86092b19 8 "prepare": "node prepare.js",
f4162974 9 "build": "rollup --config --environment BUILD:development",
7c0ba920 10 "build:typedoc": "rollup --config --environment BUILD:development --environment DOCUMENTATION",
f4162974 11 "build:prod": "rollup --config",
be0676b3
APA
12 "benchmark": "npm run build && node -r source-map-support/register benchmarks/internal/bench.js",
13 "benchmark:debug": "npm run build && node -r source-map-support/register --inspect benchmarks/internal/bench.js",
14 "benchmark:prod": "npm run build:prod && node -r source-map-support/register benchmarks/internal/bench.js",
0fd86768 15 "test": "npm run build && c8 mocha 'tests/**/*.test.js'",
2c1331d6 16 "test:debug": "npm run build && mocha --no-parallel --inspect 'tests/**/*.test.js'",
0fd86768
JB
17 "coverage": "c8 report --reporter=lcov",
18 "coverage:html": "c8 report --reporter=html",
e47bed93 19 "format": "prettier . --cache --write; ts-standard . --fix",
e99dbb69
JB
20 "lint": "eslint . --cache",
21 "lint:fix": "eslint . --cache --fix",
7d82d90e 22 "lint:report": "eslint . --cache --format json --output-file reports/eslint.json",
05a66b11 23 "release": "release-it",
5ea22628 24 "typedoc": "typedoc",
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 ],
479b44a7
JB
73 "funding": [
74 {
75 "type": "opencollective",
76 "url": "https://opencollective.com/poolifier"
77 }
78 ],
6dc67cda 79 "bugs": {
6ccc1262 80 "url": "https://github.com/poolifier/poolifier/issues"
6dc67cda 81 },
6ccc1262 82 "homepage": "https://github.com/poolifier/poolifier#readme",
c2a9d1e6
S
83 "files": [
84 "lib"
85 ],
973cde26 86 "devDependencies": {
031c8ab9
JB
87 "@commitlint/cli": "^17.4.4",
88 "@commitlint/config-conventional": "^17.4.4",
d150756d 89 "@release-it/bumper": "^4.0.2",
435bc05a 90 "@release-it/keep-a-changelog": "^3.1.0",
8f98d75d
JB
91 "@rollup/plugin-terser": "^0.4.0",
92 "@rollup/plugin-typescript": "^11.0.0",
6bfbaa33
JB
93 "@types/node": "^18.15.3",
94 "@typescript-eslint/eslint-plugin": "^5.55.0",
95 "@typescript-eslint/parser": "^5.55.0",
ca6c7d70 96 "benny": "^3.7.1",
116609a3 97 "c8": "^7.13.0",
1de9741f 98 "eslint": "^8.36.0",
0e64ff58 99 "eslint-config-standard": "^17.0.0",
6bfbaa33 100 "eslint-config-standard-with-typescript": "^34.0.1",
54541487 101 "eslint-define-config": "^1.16.0",
8f745a43 102 "eslint-import-resolver-typescript": "^3.5.3",
6853a353 103 "eslint-plugin-import": "^2.27.5",
6bfbaa33 104 "eslint-plugin-jsdoc": "^40.0.3",
8f745a43 105 "eslint-plugin-n": "^15.6.1",
2f8c5b5c 106 "eslint-plugin-promise": "^6.1.1",
06f7a33b 107 "eslint-plugin-spellcheck": "^0.0.20",
38e795c1 108 "eslint-plugin-tsdoc": "^0.2.17",
3a4f6b79 109 "expect": "^29.5.0",
a974afa6 110 "husky": "^8.0.3",
54541487 111 "lint-staged": "^13.2.0",
7595e433 112 "microtime": "^3.1.1",
5d5a6f8f 113 "mocha": "^10.2.0",
5080f39d 114 "mochawesome": "^7.1.3",
637fb030 115 "prettier": "^2.8.4",
fb78f5c0 116 "prettier-plugin-organize-imports": "^3.2.2",
9a0209e4 117 "release-it": "^15.9.0",
54541487 118 "rollup": "^3.19.1",
f45e4999 119 "rollup-plugin-analyzer": "^4.0.0",
5ea22628 120 "rollup-plugin-command": "^1.1.3",
660940b0 121 "rollup-plugin-delete": "^2.0.0",
6bfbaa33 122 "sinon": "^15.0.2",
eae1fc25 123 "source-map-support": "^0.5.21",
c9102ab4 124 "ts-standard": "^12.0.2",
9a0209e4
JB
125 "typedoc": "^0.23.27",
126 "typescript": "^5.0.2"
777b7824 127 }
6dc67cda 128}