Commit | Line | Data |
---|---|---|
6dc67cda | 1 | { |
5648b9ca | 2 | "name": "poolifier", |
8a24c026 | 3 | "version": "2.0.0", |
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": { |
f4162974 JB |
7 | "build": "rollup --config --environment BUILD:development", |
8 | "build:prod": "rollup --config", | |
be0676b3 APA |
9 | "benchmark": "npm run build && node -r source-map-support/register benchmarks/internal/bench.js", |
10 | "benchmark:debug": "npm run build && node -r source-map-support/register --inspect benchmarks/internal/bench.js", | |
11 | "benchmark:prod": "npm run build:prod && node -r source-map-support/register benchmarks/internal/bench.js", | |
bf0dd49d JB |
12 | "test": "npm run build && nyc mocha --parallel 'tests/**/*.test.js'", |
13 | "test:debug": "npm run build && mocha --inspect 'tests/**/*.test.js'", | |
14 | "test:prod": "npm run build:prod && nyc mocha --parallel 'tests/**/*.test.js'", | |
515e5da7 | 15 | "sonar": "sonar-scanner", |
85a3f8a7 APA |
16 | "coverage": "nyc report --reporter=lcov", |
17 | "coverage:html": "nyc report --reporter=html", | |
fa699c42 | 18 | "format": "prettier --loglevel silent --write .; prettierx --write .", |
777b7824 | 19 | "lint": "eslint .", |
e41beb60 | 20 | "lint:fix": "eslint . --fix", |
5ea22628 | 21 | "typedoc": "typedoc", |
e41beb60 | 22 | "prepublishOnly": "npm run build:prod" |
6dc67cda | 23 | }, |
24 | "repository": { | |
25 | "type": "git", | |
81c5a5cb | 26 | "url": "git+https://github.com/pioardi/poolifier.git" |
6dc67cda | 27 | }, |
28 | "keywords": [ | |
29 | "node", | |
31b90205 JB |
30 | "pool", |
31 | "workers pool", | |
32 | "threads pool", | |
6dc67cda | 33 | "worker-threads", |
660940b0 | 34 | "cluster", |
31b90205 JB |
35 | "cluster worker", |
36 | "concurrency", | |
6dc67cda | 37 | "performance", |
38 | "cpu", | |
973cde26 | 39 | "computing", |
31b90205 JB |
40 | "async computing", |
41 | "async resource" | |
6dc67cda | 42 | ], |
6dc67cda | 43 | "author": "pioardi", |
7e4f7b97 | 44 | "contributors": [ |
45 | { | |
46 | "name": "Christopher Quadflieg", | |
47 | "email": "chrissi92@hotmail.de", | |
48 | "url": "https://github.com/Shinigami92" | |
49 | }, | |
50 | { | |
818f2180 | 51 | "name": "Jérôme Benoit", |
7c638181 | 52 | "email": "jerome.benoit@piment-noir.org", |
7e4f7b97 | 53 | "url": "https://github.com/jerome-benoit" |
54 | } | |
55 | ], | |
6dc67cda | 56 | "license": "MIT", |
57 | "bugs": { | |
81c5a5cb | 58 | "url": "https://github.com/pioardi/poolifier/issues" |
6dc67cda | 59 | }, |
81c5a5cb | 60 | "homepage": "https://github.com/pioardi/poolifier#readme", |
c2a9d1e6 S |
61 | "files": [ |
62 | "lib" | |
63 | ], | |
973cde26 | 64 | "devDependencies": { |
8de1e273 | 65 | "@types/node": "^14.14.31", |
4dc6eeb3 | 66 | "@typescript-eslint/eslint-plugin": "^4.16.1", |
53f85430 | 67 | "@typescript-eslint/parser": "^4.15.2", |
57df5469 | 68 | "benchmark": "^2.1.4", |
eafb9e0c | 69 | "eslint": "^7.21.0", |
777b7824 S |
70 | "eslint-config-standard": "^16.0.2", |
71 | "eslint-plugin-import": "^2.22.1", | |
8ac8b45d | 72 | "eslint-plugin-jsdoc": "^32.2.0", |
777b7824 | 73 | "eslint-plugin-node": "^11.1.0", |
50aa7901 | 74 | "eslint-plugin-prettierx": "^0.17.1", |
401c5b67 | 75 | "eslint-plugin-promise": "^4.3.1", |
5c5a1fb7 | 76 | "eslint-plugin-spellcheck": "0.0.17", |
5ed1b3a8 | 77 | "expect": "^26.6.2", |
ff5e76e1 | 78 | "microtime": "^3.0.0", |
401c5b67 | 79 | "mocha": "^8.3.0", |
fa699c42 | 80 | "mocha-lcov-reporter": "^1.3.0", |
5ed1b3a8 | 81 | "nyc": "^15.1.0", |
fa699c42 | 82 | "prettier": "^2.2.1", |
777b7824 S |
83 | "prettier-plugin-organize-imports": "^1.1.1", |
84 | "prettierx": "^0.17.0", | |
a4081674 | 85 | "rollup": "^2.40.0", |
f45e4999 | 86 | "rollup-plugin-analyzer": "^4.0.0", |
5ea22628 | 87 | "rollup-plugin-command": "^1.1.3", |
660940b0 | 88 | "rollup-plugin-delete": "^2.0.0", |
f45e4999 | 89 | "rollup-plugin-terser": "^7.0.2", |
0e19141a | 90 | "rollup-plugin-typescript2": "^0.30.0", |
515e5da7 | 91 | "sonar-scanner": "^3.1.0", |
660940b0 | 92 | "source-map-support": "^0.5.19", |
f9ab13ca | 93 | "typedoc": "^0.20.29", |
8e6e6a0e | 94 | "typescript": "^4.2.2" |
da1f2de4 E |
95 | }, |
96 | "engines": { | |
50aa7901 S |
97 | "node": ">=12.11.0", |
98 | "npm": ">=6.0.0 <7" | |
777b7824 | 99 | } |
6dc67cda | 100 | } |