Fix logo squashing (#203)
[poolifier.git] / package.json
CommitLineData
6dc67cda 1{
5648b9ca 2 "name": "poolifier",
4b631f45 3 "version": "v2.0.0-beta.5",
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",
9 "benchmark": "npm run build && node -r source-map-support/register benchmarks/bench.js",
10 "benchmark:debug": "npm run build && node -r source-map-support/register --inspect benchmarks/bench.js",
11 "benchmark:prod": "npm run build:prod && node -r source-map-support/register benchmarks/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
S
19 "lint": "eslint .",
20 "lint:fix": "eslint . --fix"
6dc67cda 21 },
22 "repository": {
23 "type": "git",
81c5a5cb 24 "url": "git+https://github.com/pioardi/poolifier.git"
6dc67cda 25 },
26 "keywords": [
27 "node",
31b90205
JB
28 "pool",
29 "workers pool",
30 "threads pool",
6dc67cda 31 "worker-threads",
660940b0 32 "cluster",
31b90205
JB
33 "cluster worker",
34 "concurrency",
6dc67cda 35 "performance",
36 "cpu",
973cde26 37 "computing",
31b90205
JB
38 "async computing",
39 "async resource"
6dc67cda 40 ],
6dc67cda 41 "author": "pioardi",
7e4f7b97 42 "contributors": [
43 {
44 "name": "Christopher Quadflieg",
45 "email": "chrissi92@hotmail.de",
46 "url": "https://github.com/Shinigami92"
47 },
48 {
818f2180 49 "name": "Jérôme Benoit",
7c638181 50 "email": "jerome.benoit@piment-noir.org",
7e4f7b97 51 "url": "https://github.com/jerome-benoit"
52 }
53 ],
6dc67cda 54 "license": "MIT",
55 "bugs": {
81c5a5cb 56 "url": "https://github.com/pioardi/poolifier/issues"
6dc67cda 57 },
81c5a5cb 58 "homepage": "https://github.com/pioardi/poolifier#readme",
c2a9d1e6
S
59 "files": [
60 "lib"
61 ],
973cde26 62 "devDependencies": {
54aed1b1 63 "@types/node": "^14.14.30",
e1d984f8
JB
64 "@typescript-eslint/eslint-plugin": "^4.15.1",
65 "@typescript-eslint/parser": "^4.15.1",
57df5469 66 "benchmark": "^2.1.4",
d066251a 67 "eslint": "^7.20.0",
777b7824
S
68 "eslint-config-standard": "^16.0.2",
69 "eslint-plugin-import": "^2.22.1",
3832ad95 70 "eslint-plugin-jsdoc": "^32.0.2",
777b7824 71 "eslint-plugin-node": "^11.1.0",
50aa7901 72 "eslint-plugin-prettierx": "^0.17.1",
401c5b67 73 "eslint-plugin-promise": "^4.3.1",
5c5a1fb7 74 "eslint-plugin-spellcheck": "0.0.17",
5ed1b3a8 75 "expect": "^26.6.2",
401c5b67 76 "mocha": "^8.3.0",
fa699c42 77 "mocha-lcov-reporter": "^1.3.0",
5ed1b3a8 78 "nyc": "^15.1.0",
fa699c42 79 "prettier": "^2.2.1",
777b7824
S
80 "prettier-plugin-organize-imports": "^1.1.1",
81 "prettierx": "^0.17.0",
401c5b67 82 "rollup": "^2.39.0",
f45e4999 83 "rollup-plugin-analyzer": "^4.0.0",
660940b0 84 "rollup-plugin-delete": "^2.0.0",
f45e4999 85 "rollup-plugin-terser": "^7.0.2",
0e19141a 86 "rollup-plugin-typescript2": "^0.30.0",
515e5da7 87 "sonar-scanner": "^3.1.0",
660940b0 88 "source-map-support": "^0.5.19",
401c5b67 89 "typescript": "^4.1.5",
583a27ce
JB
90 "worker-threads-pool": "^2.0.0",
91 "workerpool": "^6.1.0"
da1f2de4
E
92 },
93 "engines": {
50aa7901
S
94 "node": ">=12.11.0",
95 "npm": ">=6.0.0 <7"
777b7824 96 }
6dc67cda 97}