X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=package.json;h=7ee8735760995b7f28178a37b59c3876f8b02113;hb=9122cc2c31a39f0fda89dac74d98043996ee809b;hp=3bc9856e93fac3b03f810f104bde245bbd20b2d5;hpb=240f52487f4ea0395633393dab4155ea4a71597f;p=poolifier.git diff --git a/package.json b/package.json index 3bc9856e..7ee87357 100644 --- a/package.json +++ b/package.json @@ -1,14 +1,16 @@ { "$schema": "https://json.schemastore.org/package", "name": "poolifier", - "version": "3.0.9", + "version": "3.1.15", "description": "Fast and small Node.js Worker_Threads and Cluster Worker Pool", "license": "MIT", - "main": "./lib/index.js", + "type": "module", + "main": "./lib/index.cjs", + "types": "./lib/index.d.ts", "exports": { ".": { "types": "./lib/index.d.ts", - "require": "./lib/index.js", + "require": "./lib/index.cjs", "import": "./lib/index.mjs" } }, @@ -22,11 +24,11 @@ "benchmark": "pnpm build && node --max-old-space-size=8192 --enable-source-maps benchmarks/internal/bench.mjs", "benchmark:prod": "pnpm build:prod && node --max-old-space-size=8192 --enable-source-maps benchmarks/internal/bench.mjs", "benchmark:debug": "pnpm build && node --max-old-space-size=8192 --enable-source-maps --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'", + "test": "pnpm build --environment SOURCEMAP:false && cross-env NODE_ENV=test c8 mocha 'tests/**/*.test.mjs'", + "test:debug": "pnpm build && cross-env NODE_ENV=test 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", + "format": "biome format . --write; eslint . --cache --fix", "lint": "eslint . --cache", "lint:fix": "eslint . --cache --fix", "lint:report": "eslint . --cache --format json --output-file reports/eslint.json", @@ -34,16 +36,13 @@ "typedoc": "node typedoc.mjs", "prepublishOnly": "pnpm build:prod" }, - "ts-standard": { - "globals": ["describe", "it", "after", "before", "afterEach", "beforeEach"] - }, "engines": { "node": ">=18.0.0", "pnpm": ">=8.6.0" }, "volta": { "node": "20.10.0", - "pnpm": "8.11.0" + "pnpm": "8.13.1" }, "repository": { "type": "git", @@ -94,52 +93,54 @@ "url": "https://github.com/poolifier/poolifier/issues" }, "homepage": "https://github.com/poolifier/poolifier#readme", - "files": ["lib"], + "files": [ + "lib" + ], "pnpm": { "overrides": { "semver": "^7.5.3" } }, "devDependencies": { - "@biomejs/biome": "^1.4.0", + "@biomejs/biome": "^1.4.1", "@commitlint/cli": "^18.4.3", "@commitlint/config-conventional": "^18.4.3", "@release-it/bumper": "^6.0.1", "@release-it/keep-a-changelog": "^5.0.0", "@rollup/plugin-terser": "^0.4.4", "@rollup/plugin-typescript": "^11.1.5", - "@types/node": "^20.10.1", - "@typescript-eslint/eslint-plugin": "^6.13.1", - "@typescript-eslint/parser": "^6.13.1", + "@types/node": "^20.10.6", + "@typescript-eslint/eslint-plugin": "^6.17.0", + "@typescript-eslint/parser": "^6.17.0", "benchmark": "^2.1.4", "c8": "^8.0.1", - "eslint": "^8.54.0", + "cross-env": "^7.0.3", + "eslint": "^8.56.0", "eslint-config-standard": "^17.1.0", - "eslint-config-standard-with-typescript": "^40.0.0", - "eslint-define-config": "^2.0.0", + "eslint-config-standard-with-typescript": "^43.0.0", + "eslint-define-config": "^2.1.0", "eslint-import-resolver-typescript": "^3.6.1", - "eslint-plugin-import": "^2.29.0", - "eslint-plugin-jsdoc": "^46.9.0", - "eslint-plugin-n": "^16.3.1", + "eslint-plugin-import": "^2.29.1", + "eslint-plugin-jsdoc": "^47.0.2", + "eslint-plugin-n": "^16.6.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": "^15.1.0", + "lint-staged": "^15.2.0", "microtime": "^3.1.1", "mocha": "^10.2.0", "mochawesome": "^7.1.3", - "prettier": "^3.1.0", - "release-it": "^17.0.0", - "rollup": "^4.6.0", + "prettier": "^3.1.1", + "release-it": "^17.0.1", + "rollup": "^4.9.2", "rollup-plugin-analyzer": "^4.0.0", "rollup-plugin-command": "^1.1.3", "rollup-plugin-delete": "^2.0.0", "rollup-plugin-dts": "^6.1.0", "sinon": "^17.0.1", - "ts-standard": "^12.0.2", - "typedoc": "^0.25.4", - "typescript": "~5.3.2" + "typedoc": "^0.25.6", + "typescript": "~5.3.3" } }