X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=package.json;h=b58916af9e8f47ad9fef8f4ea80856a837daf856;hb=a520eb6e03bcf235ba6d6d1e44256b0a5c418583;hp=20fd562ab05ed5223605a218a189bc2fe33ad2dd;hpb=03791263527a631c6876224cdbb088c25b1f081f;p=poolifier.git diff --git a/package.json b/package.json index 20fd562a..50c9a025 100644 --- a/package.json +++ b/package.json @@ -1,77 +1,103 @@ { "name": "poolifier", - "version": "1.2.1", - "description": "Library on top of node js worker threads that implement various worker pools type", + "version": "2.2.0", + "description": "A fast, easy to use Node.js Worker Thread Pool and Cluster Pool implementation", "main": "lib/index.js", "scripts": { - "build": "npm run build:clean && tsc", - "build:clean": "rimraf lib", - "test": "standard && ts-standard && npm run build && nyc mocha --exit --timeout 20000 tests/*test.js ", - "test:debug": "mocha --inspect-brk --exit tests/*test.js ", - "coverage": "nyc report --reporter=text-lcov | coveralls", - "import-sort": "npx import-sort-cli --write 'src/**/*.ts{,x}'", - "standard:verbose": "npx standard --verbose", - "lint:standard": "prettier-standard --format | standard --fix", - "ts-standard:verbose": "npx ts-standard --verbose", - "lint:ts-standard": "ts-standard --fix", - "lint-and-format": "npm run lint:standard; npm run lint:ts-standard; npm run import-sort" + "build": "rollup --config --environment BUILD:development", + "build:typedoc": "rollup --config --environment BUILD:development --environment DOCUMENTATION", + "build:prod": "rollup --config", + "benchmark": "npm run build && node -r source-map-support/register benchmarks/internal/bench.js", + "benchmark:debug": "npm run build && node -r source-map-support/register --inspect benchmarks/internal/bench.js", + "benchmark:prod": "npm run build:prod && node -r source-map-support/register benchmarks/internal/bench.js", + "test": "npm run build && nyc mocha 'tests/**/*.test.js'", + "test:debug": "npm run build && mocha --no-parallel --inspect 'tests/**/*.test.js'", + "test:prod": "npm run build:prod && nyc mocha 'tests/**/*.test.js'", + "coverage": "nyc report --reporter=lcov", + "coverage:html": "nyc report --reporter=html", + "format": "prettier --loglevel silent --write .; prettierx --write .", + "lint": "eslint . --cache", + "lint:fix": "eslint . --cache --fix", + "typedoc": "typedoc", + "prepublishOnly": "npm run build:prod" }, "repository": { "type": "git", - "url": "git+https://github.com/pioardi/poolifier.git" + "url": "git+https://github.com/poolifier/poolifier.git" }, "keywords": [ "node", - "thread-pool", + "pool", + "workers pool", + "threads pool", "worker-threads", + "cluster", + "cluster worker", + "concurrency", "performance", "cpu", "computing", - "async-resource" + "async computing", + "async resource" ], - "standard": { - "env": [ - "mocha", - "node" - ], - "ignore": [ - "lib/", - "src/", - "examples/typescript/" - ] - }, - "ts-standard": { - "env": [ - "mocha", - "node" - ], - "extensions": ".ts", - "ignore": [ - "lib/", - "examples/typescript/" - ] - }, "author": "pioardi", + "contributors": [ + { + "name": "Christopher Quadflieg", + "email": "chrissi92@hotmail.de", + "url": "https://github.com/Shinigami92" + }, + { + "name": "Jérôme Benoit", + "email": "jerome.benoit@piment-noir.org", + "url": "https://github.com/jerome-benoit" + } + ], "license": "MIT", "bugs": { - "url": "https://github.com/pioardi/poolifier/issues" + "url": "https://github.com/poolifier/poolifier/issues" }, - "homepage": "https://github.com/pioardi/poolifier#readme", + "homepage": "https://github.com/poolifier/poolifier#readme", + "files": [ + "lib" + ], "devDependencies": { + "@types/node": "^17.0.25", + "@typescript-eslint/eslint-plugin": "^5.20.0", + "@typescript-eslint/parser": "^5.20.0", "benchmark": "^2.1.4", - "coveralls": "^3.0.9", - "expect": "^26.0.0", - "mocha": "^8.0.1", - "mocha-lcov-reporter": "^1.3.0", - "nyc": "^15.0.0", - "prettier-standard": "^16.4.1", - "rimraf": "^3.0.2", - "standard": "^16.0.3", - "ts-standard": "^10.0.0", - "typescript": "^4.1.3" + "eslint": "^8.14.0", + "eslint-config-standard": "^17.0.0", + "eslint-define-config": "^1.4.0", + "eslint-plugin-import": "^2.26.0", + "eslint-plugin-jsdoc": "^39.2.8", + "eslint-plugin-n": "^15.1.0", + "eslint-plugin-node": "^11.1.0", + "eslint-plugin-prettierx": "^0.18.0", + "eslint-plugin-promise": "^6.0.0", + "eslint-plugin-spellcheck": "0.0.19", + "expect": "^27.5.1", + "microtime": "^3.0.0", + "minimist": ">=1.2.6", + "mocha": "^9.2.2", + "mochawesome": "^7.1.3", + "nyc": "^15.1.0", + "prettier": "^2.6.2", + "prettier-plugin-organize-imports": "^2.3.4", + "prettierx": "^0.18.3", + "rollup": "^2.70.2", + "rollup-plugin-analyzer": "^4.0.0", + "rollup-plugin-command": "^1.1.3", + "rollup-plugin-delete": "^2.0.0", + "rollup-plugin-istanbul": "^3.0.0", + "rollup-plugin-terser": "^7.0.2", + "rollup-plugin-ts": "^2.0.7", + "source-map-support": "^0.5.21", + "typedoc": "^0.22.15", + "typescript": "^4.6.3" }, "engines": { - "node": ">=12.0.0" - }, - "dependencies": {} + "node": ">=16.0.0", + "npm": ">=8.0.0" + } }