]>
Commit | Line | Data |
---|---|---|
1 | { | |
2 | "name": "poolifier", | |
3 | "version": "2.0.2", | |
4 | "description": "A fast, easy to use Node.js Worker Thread Pool and Cluster Pool implementation", | |
5 | "main": "lib/index.js", | |
6 | "scripts": { | |
7 | "build": "rollup --config --environment BUILD:development", | |
8 | "build:typedoc": "rollup --config --environment BUILD:development --environment DOCUMENTATION", | |
9 | "build:prod": "rollup --config", | |
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", | |
13 | "test": "npm run build && nyc mocha 'tests/**/*.test.js'", | |
14 | "test:debug": "npm run build && mocha --no-parallel --inspect 'tests/**/*.test.js'", | |
15 | "test:prod": "npm run build:prod && nyc mocha 'tests/**/*.test.js'", | |
16 | "sonar": "sonar-scanner", | |
17 | "coverage": "nyc report --reporter=lcov", | |
18 | "coverage:html": "nyc report --reporter=html", | |
19 | "format": "prettier --loglevel silent --write .; prettierx --write .", | |
20 | "lint": "eslint .", | |
21 | "lint:fix": "eslint . --fix", | |
22 | "typedoc": "typedoc", | |
23 | "prepublishOnly": "npm run build:prod" | |
24 | }, | |
25 | "repository": { | |
26 | "type": "git", | |
27 | "url": "git+https://github.com/pioardi/poolifier.git" | |
28 | }, | |
29 | "keywords": [ | |
30 | "node", | |
31 | "pool", | |
32 | "workers pool", | |
33 | "threads pool", | |
34 | "worker-threads", | |
35 | "cluster", | |
36 | "cluster worker", | |
37 | "concurrency", | |
38 | "performance", | |
39 | "cpu", | |
40 | "computing", | |
41 | "async computing", | |
42 | "async resource" | |
43 | ], | |
44 | "author": "pioardi", | |
45 | "contributors": [ | |
46 | { | |
47 | "name": "Christopher Quadflieg", | |
48 | "email": "chrissi92@hotmail.de", | |
49 | "url": "https://github.com/Shinigami92" | |
50 | }, | |
51 | { | |
52 | "name": "Jérôme Benoit", | |
53 | "email": "jerome.benoit@piment-noir.org", | |
54 | "url": "https://github.com/jerome-benoit" | |
55 | } | |
56 | ], | |
57 | "license": "MIT", | |
58 | "bugs": { | |
59 | "url": "https://github.com/pioardi/poolifier/issues" | |
60 | }, | |
61 | "homepage": "https://github.com/pioardi/poolifier#readme", | |
62 | "files": [ | |
63 | "lib" | |
64 | ], | |
65 | "devDependencies": { | |
66 | "@types/node": "^14.17.5", | |
67 | "@typescript-eslint/eslint-plugin": "^4.28.2", | |
68 | "@typescript-eslint/parser": "^4.28.2", | |
69 | "benchmark": "^2.1.4", | |
70 | "eslint": "^7.30.0", | |
71 | "eslint-config-standard": "^16.0.3", | |
72 | "eslint-define-config": "^1.0.9", | |
73 | "eslint-plugin-import": "^2.23.4", | |
74 | "eslint-plugin-jsdoc": "^35.4.3", | |
75 | "eslint-plugin-node": "^11.1.0", | |
76 | "eslint-plugin-prettierx": "^0.18.0", | |
77 | "eslint-plugin-promise": "^5.1.0", | |
78 | "eslint-plugin-spellcheck": "0.0.19", | |
79 | "expect": "^27.0.6", | |
80 | "microtime": "^3.0.0", | |
81 | "mocha": "^9.0.2", | |
82 | "mochawesome": "^6.2.2", | |
83 | "nyc": "^15.1.0", | |
84 | "prettier": "^2.3.2", | |
85 | "prettier-plugin-organize-imports": "^2.2.0", | |
86 | "prettierx": "^0.19.0", | |
87 | "rollup": "^2.53.0", | |
88 | "rollup-plugin-analyzer": "^4.0.0", | |
89 | "rollup-plugin-command": "^1.1.3", | |
90 | "rollup-plugin-delete": "^2.0.0", | |
91 | "rollup-plugin-istanbul": "^3.0.0", | |
92 | "rollup-plugin-terser": "^7.0.2", | |
93 | "rollup-plugin-typescript2": "^0.30.0", | |
94 | "sonar-scanner": "^3.1.0", | |
95 | "source-map-support": "^0.5.19", | |
96 | "typedoc": "^0.21.2", | |
97 | "typescript": "^4.3.5" | |
98 | }, | |
99 | "engines": { | |
100 | "node": ">=12.11.0", | |
101 | "npm": ">=6.0.0 <7" | |
102 | } | |
103 | } |