Apply dependencies update
[poolifier.git] / package.json
CommitLineData
6dc67cda 1{
5648b9ca 2 "name": "poolifier",
72ddc5cb 3 "version": "2.2.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 7 "build": "rollup --config --environment BUILD:development",
7c0ba920 8 "build:typedoc": "rollup --config --environment BUILD:development --environment DOCUMENTATION",
f4162974 9 "build:prod": "rollup --config",
be0676b3
APA
10 "benchmark": "npm run build && node -r source-map-support/register benchmarks/internal/bench.js",
11 "benchmark:debug": "npm run build && node -r source-map-support/register --inspect benchmarks/internal/bench.js",
12 "benchmark:prod": "npm run build:prod && node -r source-map-support/register benchmarks/internal/bench.js",
2c1331d6
JB
13 "test": "npm run build && nyc mocha 'tests/**/*.test.js'",
14 "test:debug": "npm run build && mocha --no-parallel --inspect 'tests/**/*.test.js'",
15 "test:prod": "npm run build:prod && nyc mocha '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",
5ea22628 21 "typedoc": "typedoc",
e41beb60 22 "prepublishOnly": "npm run build:prod"
6dc67cda 23 },
24 "repository": {
25 "type": "git",
6ccc1262 26 "url": "git+https://github.com/poolifier/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": {
6ccc1262 58 "url": "https://github.com/poolifier/poolifier/issues"
6dc67cda 59 },
6ccc1262 60 "homepage": "https://github.com/poolifier/poolifier#readme",
c2a9d1e6
S
61 "files": [
62 "lib"
63 ],
973cde26 64 "devDependencies": {
b28f0591
JB
65 "@types/node": "^16.11.26",
66 "@typescript-eslint/eslint-plugin": "^5.15.0",
67 "@typescript-eslint/parser": "^5.15.0",
57df5469 68 "benchmark": "^2.1.4",
b28f0591 69 "eslint": "^8.11.0",
59497fa9 70 "eslint-config-standard": "^16.0.3",
b28f0591 71 "eslint-define-config": "^1.3.0",
0295156c 72 "eslint-plugin-import": "^2.25.4",
b28f0591 73 "eslint-plugin-jsdoc": "^38.0.6",
777b7824 74 "eslint-plugin-node": "^11.1.0",
6372ea67 75 "eslint-plugin-prettierx": "^0.18.0",
7e0d447f 76 "eslint-plugin-promise": "^6.0.0",
4cb3686e 77 "eslint-plugin-spellcheck": "0.0.19",
b28f0591 78 "expect": "^27.5.1",
ff5e76e1 79 "microtime": "^3.0.0",
b28f0591
JB
80 "mocha": "^9.2.2",
81 "mochawesome": "^7.1.2",
5ed1b3a8 82 "nyc": "^15.1.0",
b28f0591 83 "prettier": "^2.6.0",
1bec5d26 84 "prettier-plugin-organize-imports": "^2.3.4",
7e0d447f 85 "prettierx": "^0.18.3",
b28f0591 86 "rollup": "^2.70.1",
f45e4999 87 "rollup-plugin-analyzer": "^4.0.0",
5ea22628 88 "rollup-plugin-command": "^1.1.3",
660940b0 89 "rollup-plugin-delete": "^2.0.0",
5519f8f3 90 "rollup-plugin-istanbul": "^3.0.0",
f45e4999 91 "rollup-plugin-terser": "^7.0.2",
0295156c 92 "rollup-plugin-ts": "^2.0.5",
eae1fc25 93 "source-map-support": "^0.5.21",
b28f0591
JB
94 "typedoc": "^0.22.13",
95 "typescript": "^4.6.2"
da1f2de4
E
96 },
97 "engines": {
7e0d447f
JB
98 "node": ">=16.0.0",
99 "npm": ">=8.0.0"
777b7824 100 }
6dc67cda 101}