package.json: Add funding section
[poolifier.git] / package.json
1 {
2 "name": "poolifier",
3 "version": "2.3.7",
4 "description": "A fast, easy to use Node.js Worker Thread Pool and Cluster Pool implementation",
5 "license": "MIT",
6 "main": "lib/index.js",
7 "scripts": {
8 "prepare": "node prepare.js",
9 "build": "rollup --config --environment BUILD:development",
10 "build:typedoc": "rollup --config --environment BUILD:development --environment DOCUMENTATION",
11 "build:prod": "rollup --config",
12 "benchmark": "npm run build && node -r source-map-support/register benchmarks/internal/bench.js",
13 "benchmark:debug": "npm run build && node -r source-map-support/register --inspect benchmarks/internal/bench.js",
14 "benchmark:prod": "npm run build:prod && node -r source-map-support/register benchmarks/internal/bench.js",
15 "test": "npm run build && c8 mocha 'tests/**/*.test.js'",
16 "test:debug": "npm run build && mocha --no-parallel --inspect 'tests/**/*.test.js'",
17 "coverage": "c8 report --reporter=lcov",
18 "coverage:html": "c8 report --reporter=html",
19 "format": "prettier . --write; ts-standard . --fix",
20 "lint": "eslint . --cache",
21 "lint:fix": "eslint . --cache --fix",
22 "lint:report": "eslint . --cache --format json --output-file reports/eslint.json",
23 "release": "release-it",
24 "typedoc": "typedoc",
25 "sonar:properties": "./updateSonarProps.sh",
26 "prepublishOnly": "npm run build:prod"
27 },
28 "ts-standard": {
29 "globals": [
30 "describe",
31 "it",
32 "before",
33 "after",
34 "beforeEach",
35 "afterEach"
36 ]
37 },
38 "engines": {
39 "node": ">=16.0.0",
40 "npm": ">=8.0.0"
41 },
42 "repository": {
43 "type": "git",
44 "url": "git+https://github.com/poolifier/poolifier.git"
45 },
46 "keywords": [
47 "node",
48 "pool",
49 "workers pool",
50 "threads pool",
51 "worker-threads",
52 "cluster",
53 "cluster worker",
54 "concurrency",
55 "performance",
56 "cpu",
57 "computing",
58 "async computing",
59 "async resource"
60 ],
61 "author": "pioardi",
62 "contributors": [
63 {
64 "name": "Christopher Quadflieg",
65 "email": "chrissi92@hotmail.de",
66 "url": "https://github.com/Shinigami92"
67 },
68 {
69 "name": "Jérôme Benoit",
70 "email": "jerome.benoit@piment-noir.org",
71 "url": "https://github.com/jerome-benoit"
72 }
73 ],
74 "funding": [
75 {
76 "type": "opencollective",
77 "url": "https://opencollective.com/poolifier"
78 }
79 ],
80 "bugs": {
81 "url": "https://github.com/poolifier/poolifier/issues"
82 },
83 "homepage": "https://github.com/poolifier/poolifier#readme",
84 "files": [
85 "lib"
86 ],
87 "devDependencies": {
88 "@release-it/keep-a-changelog": "^3.1.0",
89 "@types/node": "^18.11.3",
90 "@typescript-eslint/eslint-plugin": "^5.40.1",
91 "@typescript-eslint/parser": "^5.40.1",
92 "benny": "^3.7.1",
93 "c8": "^7.12.0",
94 "eslint": "^8.26.0",
95 "eslint-config-standard": "^17.0.0",
96 "eslint-config-standard-with-typescript": "^23.0.0",
97 "eslint-define-config": "^1.7.0",
98 "eslint-import-resolver-typescript": "^3.5.2",
99 "eslint-plugin-import": "^2.26.0",
100 "eslint-plugin-jsdoc": "^39.3.20",
101 "eslint-plugin-n": "^15.3.0",
102 "eslint-plugin-promise": "^6.1.1",
103 "eslint-plugin-spellcheck": "^0.0.19",
104 "expect": "^29.2.1",
105 "husky": "^8.0.1",
106 "lint-staged": "^13.0.3",
107 "microtime": "^3.1.1",
108 "mocha": "^10.1.0",
109 "mochawesome": "^7.1.3",
110 "prettier": "^2.7.1",
111 "prettier-plugin-organize-imports": "^3.1.1",
112 "release-it": "^15.5.0",
113 "rollup": "^3.2.3",
114 "rollup-plugin-analyzer": "^4.0.0",
115 "rollup-plugin-command": "^1.1.3",
116 "rollup-plugin-delete": "^2.0.0",
117 "rollup-plugin-terser": "^7.0.2",
118 "rollup-plugin-ts": "^3.0.2",
119 "sinon": "^14.0.1",
120 "source-map-support": "^0.5.21",
121 "ts-standard": "^12.0.1",
122 "typedoc": "^0.23.17",
123 "typescript": "^4.8.4"
124 }
125 }