X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=package.json;h=ff1376dfcf89e311c1bc547d57fabaac2c83ad3c;hb=ca027971126dd25bbc9dca1ef37844c01196a06c;hp=acdb54cc846ca92fd1fa0b8f91ae9979d5638847;hpb=5c5b24ee8a3461b7b2eb5832fdac4efb9bf3449f;p=poolifier.git diff --git a/package.json b/package.json index acdb54cc..ff1376df 100644 --- a/package.json +++ b/package.json @@ -1,21 +1,23 @@ { "name": "poolifier", - "version": "1.2.1", + "version": "2.0.0", "description": "Library on top of node js worker threads that implement various worker pools type", "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 ", - "test:nodemon": "nodemon --exec \"npm test\"", - "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", + "build:dev": "rollup --config --environment BUILD:development", + "benchmark": "npm run build && node benchmarks/bench.js", + "benchmark:debug": "npm run build:dev && node -r source-map-support/register --inspect-brk benchmarks/bench.js", + "benchmark:debug:vscode": "node -r source-map-support/register benchmarks/bench.js", + "test": "npm run build && nyc mocha --exit --timeout 20000 tests/**/*.test.js", + "test:debug": "npm run build:dev && mocha -r source-map-support/register --inspect-brk --exit tests/**/*.test.js", + "test:debug:vscode": "mocha -r source-map-support/register --exit tests/**/*.test.js", + "sonar": "sonar-scanner", + "coverage": "nyc report --reporter=lcov --check-coverage --lines 80", + "coverage:html": "nyc report --reporter=html --check-coverage --lines 80", + "format": "prettier --loglevel silent --write .; prettierx --write .", + "lint": "eslint .", + "lint:fix": "eslint . --fix" }, "repository": { "type": "git", @@ -25,54 +27,66 @@ "node", "thread-pool", "worker-threads", + "cluster", "performance", "cpu", "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" }, "homepage": "https://github.com/pioardi/poolifier#readme", + "files": [ + "lib" + ], "devDependencies": { + "@types/node": "^14.14.27", + "@typescript-eslint/eslint-plugin": "^4.15.0", + "@typescript-eslint/parser": "^4.15.0", "benchmark": "^2.1.4", - "coveralls": "^3.0.9", - "expect": "^26.0.0", - "mocha": "^8.0.1", + "eslint": "^7.20.0", + "eslint-config-standard": "^16.0.2", + "eslint-plugin-import": "^2.22.1", + "eslint-plugin-jsdoc": "^31.6.1", + "eslint-plugin-node": "^11.1.0", + "eslint-plugin-prettierx": "^0.17.1", + "eslint-plugin-promise": "^4.3.1", + "eslint-plugin-spellcheck": "0.0.17", + "expect": "^26.6.2", + "mocha": "^8.3.0", "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" + "nyc": "^15.1.0", + "prettier": "^2.2.1", + "prettier-plugin-organize-imports": "^1.1.1", + "prettierx": "^0.17.0", + "rollup": "^2.39.0", + "rollup-plugin-analyzer": "^4.0.0", + "rollup-plugin-delete": "^2.0.0", + "rollup-plugin-terser": "^7.0.2", + "rollup-plugin-typescript2": "^0.29.0", + "sonar-scanner": "^3.1.0", + "source-map-support": "^0.5.19", + "typescript": "^4.1.5", + "worker-threads-pool": "^2.0.0", + "workerpool": "^6.1.0" }, "engines": { - "node": ">=12.0.0" - }, - "dependencies": {} + "node": ">=12.11.0", + "npm": ">=6.0.0 <7" + } }