]>
Commit | Line | Data |
---|---|---|
1 | { | |
2 | "name": "poolifier", | |
3 | "version": "2.0.0-beta.7", | |
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:prod": "rollup --config", | |
9 | "benchmark": "npm run build && node -r source-map-support/register benchmarks/internal/bench.js", | |
10 | "benchmark:debug": "npm run build && node -r source-map-support/register --inspect benchmarks/internal/bench.js", | |
11 | "benchmark:prod": "npm run build:prod && node -r source-map-support/register benchmarks/internal/bench.js", | |
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'", | |
15 | "sonar": "sonar-scanner", | |
16 | "coverage": "nyc report --reporter=lcov", | |
17 | "coverage:html": "nyc report --reporter=html", | |
18 | "format": "prettier --loglevel silent --write .; prettierx --write .", | |
19 | "lint": "eslint .", | |
20 | "lint:fix": "eslint . --fix", | |
21 | "prepublishOnly": "npm run build:prod" | |
22 | }, | |
23 | "repository": { | |
24 | "type": "git", | |
25 | "url": "git+https://github.com/pioardi/poolifier.git" | |
26 | }, | |
27 | "keywords": [ | |
28 | "node", | |
29 | "pool", | |
30 | "workers pool", | |
31 | "threads pool", | |
32 | "worker-threads", | |
33 | "cluster", | |
34 | "cluster worker", | |
35 | "concurrency", | |
36 | "performance", | |
37 | "cpu", | |
38 | "computing", | |
39 | "async computing", | |
40 | "async resource" | |
41 | ], | |
42 | "author": "pioardi", | |
43 | "contributors": [ | |
44 | { | |
45 | "name": "Christopher Quadflieg", | |
46 | "email": "chrissi92@hotmail.de", | |
47 | "url": "https://github.com/Shinigami92" | |
48 | }, | |
49 | { | |
50 | "name": "Jérôme Benoit", | |
51 | "email": "jerome.benoit@piment-noir.org", | |
52 | "url": "https://github.com/jerome-benoit" | |
53 | } | |
54 | ], | |
55 | "license": "MIT", | |
56 | "bugs": { | |
57 | "url": "https://github.com/pioardi/poolifier/issues" | |
58 | }, | |
59 | "homepage": "https://github.com/pioardi/poolifier#readme", | |
60 | "files": [ | |
61 | "lib" | |
62 | ], | |
63 | "devDependencies": { | |
64 | "@types/node": "^14.14.31", | |
65 | "@typescript-eslint/eslint-plugin": "^4.15.2", | |
66 | "@typescript-eslint/parser": "^4.15.2", | |
67 | "benchmark": "^2.1.4", | |
68 | "eslint": "^7.20.0", | |
69 | "eslint-config-standard": "^16.0.2", | |
70 | "eslint-plugin-import": "^2.22.1", | |
71 | "eslint-plugin-jsdoc": "^32.1.0", | |
72 | "eslint-plugin-node": "^11.1.0", | |
73 | "eslint-plugin-prettierx": "^0.17.1", | |
74 | "eslint-plugin-promise": "^4.3.1", | |
75 | "eslint-plugin-spellcheck": "0.0.17", | |
76 | "expect": "^26.6.2", | |
77 | "mocha": "^8.3.0", | |
78 | "mocha-lcov-reporter": "^1.3.0", | |
79 | "nyc": "^15.1.0", | |
80 | "prettier": "^2.2.1", | |
81 | "prettier-plugin-organize-imports": "^1.1.1", | |
82 | "prettierx": "^0.17.0", | |
83 | "rollup": "^2.39.0", | |
84 | "rollup-plugin-analyzer": "^4.0.0", | |
85 | "rollup-plugin-delete": "^2.0.0", | |
86 | "rollup-plugin-terser": "^7.0.2", | |
87 | "rollup-plugin-typescript2": "^0.30.0", | |
88 | "sonar-scanner": "^3.1.0", | |
89 | "source-map-support": "^0.5.19", | |
90 | "typescript": "^4.1.5" | |
91 | }, | |
92 | "engines": { | |
93 | "node": ">=12.11.0", | |
94 | "npm": ">=6.0.0 <7" | |
95 | } | |
96 | } |