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