X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=package.json;h=6369061739e811e584918f5157631e824d2b58da;hb=7a57074345765bce1acd88a072514a0ae8678b38;hp=4fab7713cc916319a8a4697c19a7a3cd527845b7;hpb=f84172382ae9dbdf6a13709016b6564f2dd5387d;p=poolifier.git diff --git a/package.json b/package.json index 4fab7713..63690617 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "$schema": "https://json.schemastore.org/package", "name": "poolifier", - "version": "2.7.4", + "version": "3.0.1", "description": "Fast and small Node.js Worker_Threads and Cluster Worker Pool", "license": "MIT", "main": "./lib/index.js", @@ -14,16 +14,16 @@ }, "scripts": { "preinstall": "npx --yes only-allow pnpm", - "prepare": "node prepare.js", + "prepare": "node prepare.mjs", "build": "rollup --config --environment BUILD:development", - "build:analyze": "rollup --config --environment ANALYZE,BUILD:development", - "build:typedoc": "rollup --config --environment DOCUMENTATION,BUILD:development", "build:prod": "rollup --config", - "benchmark": "pnpm build && node -r source-map-support/register benchmarks/internal/bench.mjs", - "benchmark:debug": "pnpm build && node -r source-map-support/register --inspect benchmarks/internal/bench.mjs", - "benchmark:prod": "pnpm build:prod && node benchmarks/internal/bench.mjs", - "test": "pnpm build --environment SOURCEMAP:false && c8 mocha 'tests/**/*.test.js'", - "test:debug": "pnpm build && mocha --no-parallel --inspect 'tests/**/*.test.js'", + "build:typedoc": "rollup --config --environment DOCUMENTATION,BUILD:development", + "build:analyze": "rollup --config --environment ANALYZE,BUILD:development", + "benchmark": "pnpm build && node --max-old-space-size=4096 -r source-map-support/register benchmarks/internal/bench.mjs", + "benchmark:prod": "pnpm build:prod && node --max-old-space-size=4096 benchmarks/internal/bench.mjs", + "benchmark:debug": "pnpm build && node --max-old-space-size=4096 -r source-map-support/register --inspect benchmarks/internal/bench.mjs", + "test": "pnpm build --environment SOURCEMAP:false && c8 mocha 'tests/**/*.test.mjs'", + "test:debug": "pnpm build && mocha --no-parallel --inspect 'tests/**/*.test.mjs'", "coverage": "c8 report --reporter=lcov", "coverage:html": "c8 report --reporter=html", "format": "biome format . --write; ts-standard . --fix", @@ -35,15 +35,15 @@ "prepublishOnly": "pnpm build:prod" }, "ts-standard": { - "globals": ["describe", "it", "before", "after", "beforeEach", "afterEach"] + "globals": ["describe", "it", "after", "before", "afterEach", "beforeEach"] }, "engines": { - "node": ">=16.14.0", + "node": ">=18.0.0", "pnpm": ">=8.6.0" }, "volta": { - "node": "20.8.0", - "pnpm": "8.8.0" + "node": "20.8.1", + "pnpm": "8.9.0" }, "repository": { "type": "git", @@ -102,45 +102,45 @@ }, "devDependencies": { "@biomejs/biome": "^1.2.2", - "@commitlint/cli": "^17.7.2", - "@commitlint/config-conventional": "^17.7.0", + "@commitlint/cli": "^17.8.0", + "@commitlint/config-conventional": "^17.8.0", "@release-it/bumper": "^5.1.0", "@release-it/keep-a-changelog": "^4.0.0", - "@rollup/plugin-terser": "^0.4.3", - "@rollup/plugin-typescript": "^11.1.4", - "@types/node": "^20.7.1", - "@typescript-eslint/eslint-plugin": "^6.7.3", - "@typescript-eslint/parser": "^6.7.3", + "@rollup/plugin-terser": "^0.4.4", + "@rollup/plugin-typescript": "^11.1.5", + "@types/node": "^20.8.6", + "@typescript-eslint/eslint-plugin": "^6.7.5", + "@typescript-eslint/parser": "^6.7.5", "benchmark": "^2.1.4", "c8": "^8.0.1", - "eslint": "^8.50.0", + "eslint": "^8.51.0", "eslint-config-standard": "^17.1.0", - "eslint-config-standard-with-typescript": "^39.1.0", - "eslint-define-config": "^1.23.0", + "eslint-config-standard-with-typescript": "^39.1.1", + "eslint-define-config": "^1.24.1", "eslint-import-resolver-typescript": "^3.6.1", "eslint-plugin-import": "^2.28.1", "eslint-plugin-jsdoc": "^46.8.2", - "eslint-plugin-n": "^16.1.0", + "eslint-plugin-n": "^16.2.0", "eslint-plugin-promise": "^6.1.1", "eslint-plugin-spellcheck": "^0.0.20", "eslint-plugin-tsdoc": "^0.2.17", "expect": "^29.7.0", "husky": "^8.0.3", - "lint-staged": "^14.0.1", + "lint-staged": "^15.0.1", "microtime": "^3.1.1", "mocha": "^10.2.0", "mochawesome": "^7.1.3", "prettier": "^3.0.3", "release-it": "^16.2.1", - "rollup": "^3.29.4", + "rollup": "^4.1.4", "rollup-plugin-analyzer": "^4.0.0", "rollup-plugin-command": "^1.1.3", "rollup-plugin-delete": "^2.0.0", - "rollup-plugin-dts": "^6.0.2", - "sinon": "^16.0.0", + "rollup-plugin-dts": "^6.1.0", + "sinon": "^16.1.0", "source-map-support": "^0.5.21", "ts-standard": "^12.0.2", - "typedoc": "^0.25.1", + "typedoc": "^0.25.2", "typescript": "~5.2.2" } }