Bump rollup from 2.77.2 to 2.77.3 (#508)
[poolifier.git] / package.json
CommitLineData
6dc67cda 1{
5648b9ca 2 "name": "poolifier",
72ddc5cb 3 "version": "2.2.0",
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": {
f4162974 7 "build": "rollup --config --environment BUILD:development",
7c0ba920 8 "build:typedoc": "rollup --config --environment BUILD:development --environment DOCUMENTATION",
f4162974 9 "build:prod": "rollup --config",
be0676b3
APA
10 "benchmark": "npm run build && node -r source-map-support/register benchmarks/internal/bench.js",
11 "benchmark:debug": "npm run build && node -r source-map-support/register --inspect benchmarks/internal/bench.js",
12 "benchmark:prod": "npm run build:prod && node -r source-map-support/register benchmarks/internal/bench.js",
2c1331d6
JB
13 "test": "npm run build && nyc mocha 'tests/**/*.test.js'",
14 "test:debug": "npm run build && mocha --no-parallel --inspect 'tests/**/*.test.js'",
15 "test:prod": "npm run build:prod && nyc mocha 'tests/**/*.test.js'",
85a3f8a7
APA
16 "coverage": "nyc report --reporter=lcov",
17 "coverage:html": "nyc report --reporter=html",
fa699c42 18 "format": "prettier --loglevel silent --write .; prettierx --write .",
e99dbb69
JB
19 "lint": "eslint . --cache",
20 "lint:fix": "eslint . --cache --fix",
5ea22628 21 "typedoc": "typedoc",
3ffada52 22 "sonar:properties": "./updateSonarProps.sh",
e41beb60 23 "prepublishOnly": "npm run build:prod"
6dc67cda 24 },
25 "repository": {
26 "type": "git",
6ccc1262 27 "url": "git+https://github.com/poolifier/poolifier.git"
6dc67cda 28 },
29 "keywords": [
30 "node",
31b90205
JB
31 "pool",
32 "workers pool",
33 "threads pool",
6dc67cda 34 "worker-threads",
660940b0 35 "cluster",
31b90205
JB
36 "cluster worker",
37 "concurrency",
6dc67cda 38 "performance",
39 "cpu",
973cde26 40 "computing",
31b90205
JB
41 "async computing",
42 "async resource"
6dc67cda 43 ],
6dc67cda 44 "author": "pioardi",
7e4f7b97 45 "contributors": [
46 {
47 "name": "Christopher Quadflieg",
48 "email": "chrissi92@hotmail.de",
49 "url": "https://github.com/Shinigami92"
50 },
51 {
818f2180 52 "name": "Jérôme Benoit",
7c638181 53 "email": "jerome.benoit@piment-noir.org",
7e4f7b97 54 "url": "https://github.com/jerome-benoit"
55 }
56 ],
6dc67cda 57 "license": "MIT",
58 "bugs": {
6ccc1262 59 "url": "https://github.com/poolifier/poolifier/issues"
6dc67cda 60 },
6ccc1262 61 "homepage": "https://github.com/poolifier/poolifier#readme",
c2a9d1e6
S
62 "files": [
63 "lib"
64 ],
973cde26 65 "devDependencies": {
7b9478fd 66 "@types/node": "^18.7.1",
5ddd565b
JB
67 "@typescript-eslint/eslint-plugin": "^5.33.0",
68 "@typescript-eslint/parser": "^5.33.0",
57df5469 69 "benchmark": "^2.1.4",
019c235b 70 "eslint": "^8.21.0",
0e64ff58 71 "eslint-config-standard": "^17.0.0",
c1e37506 72 "eslint-define-config": "^1.6.0",
4ae383d6 73 "eslint-import-resolver-typescript": "^3.4.0",
c18b85a9 74 "eslint-plugin-import": "^2.26.0",
5ddd565b 75 "eslint-plugin-jsdoc": "^39.3.6",
09db1405 76 "eslint-plugin-n": "^15.2.4",
777b7824 77 "eslint-plugin-node": "^11.1.0",
6372ea67 78 "eslint-plugin-prettierx": "^0.18.0",
7e0d447f 79 "eslint-plugin-promise": "^6.0.0",
26a2bc61 80 "eslint-plugin-spellcheck": "^0.0.19",
09db1405 81 "expect": "^28.1.3",
815d4289 82 "microtime": "^3.1.0",
c1955667 83 "mocha": "^10.0.0",
5080f39d 84 "mochawesome": "^7.1.3",
5ed1b3a8 85 "nyc": "^15.1.0",
815d4289 86 "prettier": "^2.7.1",
a8f0724d 87 "prettier-plugin-organize-imports": "^3.0.3",
7e0d447f 88 "prettierx": "^0.18.3",
5cc8be08 89 "rollup": "^2.77.3",
f45e4999 90 "rollup-plugin-analyzer": "^4.0.0",
5ea22628 91 "rollup-plugin-command": "^1.1.3",
660940b0 92 "rollup-plugin-delete": "^2.0.0",
5519f8f3 93 "rollup-plugin-istanbul": "^3.0.0",
f45e4999 94 "rollup-plugin-terser": "^7.0.2",
815d4289 95 "rollup-plugin-ts": "^3.0.2",
eae1fc25 96 "source-map-support": "^0.5.21",
98e6f50d 97 "typedoc": "^0.23.10",
815d4289 98 "typescript": "^4.7.4"
da1f2de4
E
99 },
100 "engines": {
7e0d447f
JB
101 "node": ">=16.0.0",
102 "npm": ">=8.0.0"
777b7824 103 }
6dc67cda 104}