Commit | Line | Data |
---|---|---|
6dc67cda | 1 | { |
5648b9ca | 2 | "name": "poolifier", |
a875f8d1 | 3 | "version": "2.3.4", |
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": { |
86092b19 | 7 | "prepare": "node prepare.js", |
f4162974 | 8 | "build": "rollup --config --environment BUILD:development", |
7c0ba920 | 9 | "build:typedoc": "rollup --config --environment BUILD:development --environment DOCUMENTATION", |
f4162974 | 10 | "build:prod": "rollup --config", |
be0676b3 APA |
11 | "benchmark": "npm run build && node -r source-map-support/register benchmarks/internal/bench.js", |
12 | "benchmark:debug": "npm run build && node -r source-map-support/register --inspect benchmarks/internal/bench.js", | |
13 | "benchmark:prod": "npm run build:prod && node -r source-map-support/register benchmarks/internal/bench.js", | |
2c1331d6 JB |
14 | "test": "npm run build && nyc mocha 'tests/**/*.test.js'", |
15 | "test:debug": "npm run build && mocha --no-parallel --inspect '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", | |
7d82d90e | 21 | "lint:report": "eslint . --cache --format json --output-file reports/eslint.json", |
05a66b11 | 22 | "release": "release-it", |
5ea22628 | 23 | "typedoc": "typedoc", |
3ffada52 | 24 | "sonar:properties": "./updateSonarProps.sh", |
e41beb60 | 25 | "prepublishOnly": "npm run build:prod" |
6dc67cda | 26 | }, |
27 | "repository": { | |
28 | "type": "git", | |
6ccc1262 | 29 | "url": "git+https://github.com/poolifier/poolifier.git" |
6dc67cda | 30 | }, |
31 | "keywords": [ | |
32 | "node", | |
31b90205 JB |
33 | "pool", |
34 | "workers pool", | |
35 | "threads pool", | |
6dc67cda | 36 | "worker-threads", |
660940b0 | 37 | "cluster", |
31b90205 JB |
38 | "cluster worker", |
39 | "concurrency", | |
6dc67cda | 40 | "performance", |
41 | "cpu", | |
973cde26 | 42 | "computing", |
31b90205 JB |
43 | "async computing", |
44 | "async resource" | |
6dc67cda | 45 | ], |
6dc67cda | 46 | "author": "pioardi", |
7e4f7b97 | 47 | "contributors": [ |
48 | { | |
49 | "name": "Christopher Quadflieg", | |
50 | "email": "chrissi92@hotmail.de", | |
51 | "url": "https://github.com/Shinigami92" | |
52 | }, | |
53 | { | |
818f2180 | 54 | "name": "Jérôme Benoit", |
7c638181 | 55 | "email": "jerome.benoit@piment-noir.org", |
7e4f7b97 | 56 | "url": "https://github.com/jerome-benoit" |
57 | } | |
58 | ], | |
6dc67cda | 59 | "license": "MIT", |
60 | "bugs": { | |
6ccc1262 | 61 | "url": "https://github.com/poolifier/poolifier/issues" |
6dc67cda | 62 | }, |
6ccc1262 | 63 | "homepage": "https://github.com/poolifier/poolifier#readme", |
c2a9d1e6 S |
64 | "files": [ |
65 | "lib" | |
66 | ], | |
973cde26 | 67 | "devDependencies": { |
435bc05a | 68 | "@release-it/keep-a-changelog": "^3.1.0", |
df5949eb | 69 | "@types/node": "^18.11.0", |
9b74351d JB |
70 | "@typescript-eslint/eslint-plugin": "^5.40.0", |
71 | "@typescript-eslint/parser": "^5.40.0", | |
57df5469 | 72 | "benchmark": "^2.1.4", |
dc97632d | 73 | "eslint": "^8.25.0", |
0e64ff58 | 74 | "eslint-config-standard": "^17.0.0", |
88b0ada8 | 75 | "eslint-define-config": "^1.7.0", |
3cf43721 | 76 | "eslint-import-resolver-typescript": "^3.5.1", |
c18b85a9 | 77 | "eslint-plugin-import": "^2.26.0", |
5ddd565b | 78 | "eslint-plugin-jsdoc": "^39.3.6", |
86eab0d6 | 79 | "eslint-plugin-n": "^15.3.0", |
777b7824 | 80 | "eslint-plugin-node": "^11.1.0", |
6372ea67 | 81 | "eslint-plugin-prettierx": "^0.18.0", |
f931db5c | 82 | "eslint-plugin-promise": "^6.1.0", |
26a2bc61 | 83 | "eslint-plugin-spellcheck": "^0.0.19", |
abbda5d7 | 84 | "expect": "^29.2.0", |
86092b19 JB |
85 | "husky": "^8.0.1", |
86 | "lint-staged": "^13.0.3", | |
7595e433 | 87 | "microtime": "^3.1.1", |
20d33cbf | 88 | "mocha": "^10.1.0", |
5080f39d | 89 | "mochawesome": "^7.1.3", |
5ed1b3a8 | 90 | "nyc": "^15.1.0", |
815d4289 | 91 | "prettier": "^2.7.1", |
138cda23 | 92 | "prettier-plugin-organize-imports": "^3.1.1", |
7e0d447f | 93 | "prettierx": "^0.18.3", |
435bc05a | 94 | "release-it": "^15.5.0", |
90ee1b18 | 95 | "rollup": "^3.2.2", |
f45e4999 | 96 | "rollup-plugin-analyzer": "^4.0.0", |
5ea22628 | 97 | "rollup-plugin-command": "^1.1.3", |
660940b0 | 98 | "rollup-plugin-delete": "^2.0.0", |
5519f8f3 | 99 | "rollup-plugin-istanbul": "^3.0.0", |
f45e4999 | 100 | "rollup-plugin-terser": "^7.0.2", |
815d4289 | 101 | "rollup-plugin-ts": "^3.0.2", |
a3809289 | 102 | "sinon": "^14.0.1", |
eae1fc25 | 103 | "source-map-support": "^0.5.21", |
bb3d5b74 | 104 | "typedoc": "^0.23.16", |
dcfd671a | 105 | "typescript": "^4.8.4" |
da1f2de4 E |
106 | }, |
107 | "engines": { | |
7e0d447f JB |
108 | "node": ">=16.0.0", |
109 | "npm": ">=8.0.0" | |
777b7824 | 110 | } |
6dc67cda | 111 | } |