Bump mocha from 8.4.0 to 9.0.2 (#430)
[poolifier.git] / package.json
CommitLineData
6dc67cda 1{
5648b9ca 2 "name": "poolifier",
d7a0c5c5 3 "version": "2.0.2",
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",
bf0dd49d
JB
13 "test": "npm run build && nyc mocha --parallel 'tests/**/*.test.js'",
14 "test:debug": "npm run build && mocha --inspect 'tests/**/*.test.js'",
15 "test:prod": "npm run build:prod && nyc mocha --parallel 'tests/**/*.test.js'",
515e5da7 16 "sonar": "sonar-scanner",
85a3f8a7
APA
17 "coverage": "nyc report --reporter=lcov",
18 "coverage:html": "nyc report --reporter=html",
fa699c42 19 "format": "prettier --loglevel silent --write .; prettierx --write .",
777b7824 20 "lint": "eslint .",
e41beb60 21 "lint:fix": "eslint . --fix",
5ea22628 22 "typedoc": "typedoc",
e41beb60 23 "prepublishOnly": "npm run build:prod"
6dc67cda 24 },
25 "repository": {
26 "type": "git",
81c5a5cb 27 "url": "git+https://github.com/pioardi/poolifier.git"
6dc67cda 28 },
29 "keywords": [
30 "node",
31b90205
JB
31 "pool",
32 "workers pool",
33 "threads pool",
6dc67cda 34 "worker-threads",
660940b0 35 "cluster",
31b90205
JB
36 "cluster worker",
37 "concurrency",
6dc67cda 38 "performance",
39 "cpu",
973cde26 40 "computing",
31b90205
JB
41 "async computing",
42 "async resource"
6dc67cda 43 ],
6dc67cda 44 "author": "pioardi",
7e4f7b97 45 "contributors": [
46 {
47 "name": "Christopher Quadflieg",
48 "email": "chrissi92@hotmail.de",
49 "url": "https://github.com/Shinigami92"
50 },
51 {
818f2180 52 "name": "Jérôme Benoit",
7c638181 53 "email": "jerome.benoit@piment-noir.org",
7e4f7b97 54 "url": "https://github.com/jerome-benoit"
55 }
56 ],
6dc67cda 57 "license": "MIT",
58 "bugs": {
81c5a5cb 59 "url": "https://github.com/pioardi/poolifier/issues"
6dc67cda 60 },
81c5a5cb 61 "homepage": "https://github.com/pioardi/poolifier#readme",
c2a9d1e6
S
62 "files": [
63 "lib"
64 ],
973cde26 65 "devDependencies": {
f1a2a05f
JB
66 "@types/node": "^14.17.2",
67 "@typescript-eslint/eslint-plugin": "^4.26.0",
68 "@typescript-eslint/parser": "^4.26.0",
57df5469 69 "benchmark": "^2.1.4",
f1a2a05f 70 "eslint": "^7.28.0",
59497fa9 71 "eslint-config-standard": "^16.0.3",
2ea51d62 72 "eslint-define-config": "^1.0.8",
f1a2a05f
JB
73 "eslint-plugin-import": "^2.23.4",
74 "eslint-plugin-jsdoc": "^35.1.2",
777b7824 75 "eslint-plugin-node": "^11.1.0",
6372ea67 76 "eslint-plugin-prettierx": "^0.18.0",
2ea51d62 77 "eslint-plugin-promise": "^5.1.0",
5c5a1fb7 78 "eslint-plugin-spellcheck": "0.0.17",
f1a2a05f 79 "expect": "^27.0.2",
ff5e76e1 80 "microtime": "^3.0.0",
addeb04c 81 "mocha": "^9.0.2",
5ed1b3a8 82 "nyc": "^15.1.0",
f1a2a05f 83 "prettier": "^2.3.1",
c365b2d3 84 "prettier-plugin-organize-imports": "^2.1.0",
f1a2a05f
JB
85 "prettierx": "^0.18.1",
86 "rollup": "^2.50.6",
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",
0e19141a 92 "rollup-plugin-typescript2": "^0.30.0",
515e5da7 93 "sonar-scanner": "^3.1.0",
660940b0 94 "source-map-support": "^0.5.19",
2ea51d62 95 "typedoc": "^0.20.36",
f1a2a05f 96 "typescript": "^4.3.2"
da1f2de4
E
97 },
98 "engines": {
50aa7901
S
99 "node": ">=12.11.0",
100 "npm": ">=6.0.0 <7"
777b7824 101 }
6dc67cda 102}