Properly integrate standard JS tools for JS and TS code
[poolifier.git] / package.json
CommitLineData
6dc67cda 1{
5648b9ca 2 "name": "poolifier",
3b9f6953 3 "version": "2.3.6",
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",
0fd86768 14 "test": "npm run build && c8 mocha 'tests/**/*.test.js'",
2c1331d6 15 "test:debug": "npm run build && mocha --no-parallel --inspect 'tests/**/*.test.js'",
0fd86768
JB
16 "coverage": "c8 report --reporter=lcov",
17 "coverage:html": "c8 report --reporter=html",
e99dbb69
JB
18 "lint": "eslint . --cache",
19 "lint:fix": "eslint . --cache --fix",
7d82d90e 20 "lint:report": "eslint . --cache --format json --output-file reports/eslint.json",
05a66b11 21 "release": "release-it",
5ea22628 22 "typedoc": "typedoc",
3ffada52 23 "sonar:properties": "./updateSonarProps.sh",
e41beb60 24 "prepublishOnly": "npm run build:prod"
6dc67cda 25 },
78cea37e
JB
26 "ts-standard": {
27 "ignore": [
28 "tests/**/*.js"
29 ]
30 },
31 "engines": {
32 "node": ">=16.0.0",
33 "npm": ">=8.0.0"
34 },
6dc67cda 35 "repository": {
36 "type": "git",
6ccc1262 37 "url": "git+https://github.com/poolifier/poolifier.git"
6dc67cda 38 },
39 "keywords": [
40 "node",
31b90205
JB
41 "pool",
42 "workers pool",
43 "threads pool",
6dc67cda 44 "worker-threads",
660940b0 45 "cluster",
31b90205
JB
46 "cluster worker",
47 "concurrency",
6dc67cda 48 "performance",
49 "cpu",
973cde26 50 "computing",
31b90205
JB
51 "async computing",
52 "async resource"
6dc67cda 53 ],
6dc67cda 54 "author": "pioardi",
7e4f7b97 55 "contributors": [
56 {
57 "name": "Christopher Quadflieg",
58 "email": "chrissi92@hotmail.de",
59 "url": "https://github.com/Shinigami92"
60 },
61 {
818f2180 62 "name": "Jérôme Benoit",
7c638181 63 "email": "jerome.benoit@piment-noir.org",
7e4f7b97 64 "url": "https://github.com/jerome-benoit"
65 }
66 ],
6dc67cda 67 "license": "MIT",
68 "bugs": {
6ccc1262 69 "url": "https://github.com/poolifier/poolifier/issues"
6dc67cda 70 },
6ccc1262 71 "homepage": "https://github.com/poolifier/poolifier#readme",
c2a9d1e6
S
72 "files": [
73 "lib"
74 ],
973cde26 75 "devDependencies": {
435bc05a 76 "@release-it/keep-a-changelog": "^3.1.0",
eab90243 77 "@types/node": "^18.11.3",
a3f1e7ff 78 "@typescript-eslint/eslint-plugin": "^5.40.1",
6c4fe9bc 79 "@typescript-eslint/parser": "^5.40.1",
57df5469 80 "benchmark": "^2.1.4",
0fd86768 81 "c8": "^7.12.0",
17b0cc58 82 "eslint": "^8.26.0",
0e64ff58 83 "eslint-config-standard": "^17.0.0",
78cea37e 84 "eslint-config-standard-with-typescript": "^23.0.0",
88b0ada8 85 "eslint-define-config": "^1.7.0",
eab90243 86 "eslint-import-resolver-typescript": "^3.5.2",
c18b85a9 87 "eslint-plugin-import": "^2.26.0",
78cea37e 88 "eslint-plugin-jsdoc": "^39.3.19",
86eab0d6 89 "eslint-plugin-n": "^15.3.0",
2f8c5b5c 90 "eslint-plugin-promise": "^6.1.1",
26a2bc61 91 "eslint-plugin-spellcheck": "^0.0.19",
6c4fe9bc 92 "expect": "^29.2.1",
86092b19
JB
93 "husky": "^8.0.1",
94 "lint-staged": "^13.0.3",
7595e433 95 "microtime": "^3.1.1",
20d33cbf 96 "mocha": "^10.1.0",
5080f39d 97 "mochawesome": "^7.1.3",
815d4289 98 "prettier": "^2.7.1",
138cda23 99 "prettier-plugin-organize-imports": "^3.1.1",
435bc05a 100 "release-it": "^15.5.0",
6c4fe9bc 101 "rollup": "^3.2.3",
f45e4999 102 "rollup-plugin-analyzer": "^4.0.0",
5ea22628 103 "rollup-plugin-command": "^1.1.3",
660940b0 104 "rollup-plugin-delete": "^2.0.0",
5519f8f3 105 "rollup-plugin-istanbul": "^3.0.0",
f45e4999 106 "rollup-plugin-terser": "^7.0.2",
815d4289 107 "rollup-plugin-ts": "^3.0.2",
a3809289 108 "sinon": "^14.0.1",
eae1fc25 109 "source-map-support": "^0.5.21",
78cea37e 110 "ts-standard": "^12.0.1",
6c4fe9bc 111 "typedoc": "^0.23.17",
dcfd671a 112 "typescript": "^4.8.4"
777b7824 113 }
6dc67cda 114}