]>
Commit | Line | Data |
---|---|---|
1 | { | |
2 | "name": "poolifier", | |
3 | "version": "1.2.1", | |
4 | "description": "Library on top of node js worker threads that implement various worker pools type", | |
5 | "main": "lib/index.js", | |
6 | "scripts": { | |
7 | "build": "npm run build:clean && tsc", | |
8 | "build:clean": "rimraf lib", | |
9 | "benchmark": "npm run build && node benchmarks/bench.js", | |
10 | "test": "npm run build && nyc mocha --exit --timeout 20000 tests/**/*.test.js", | |
11 | "test:debug": "mocha --inspect-brk --exit tests/**/*.test.js", | |
12 | "coverage": "nyc report --reporter=text-lcov | coveralls", | |
13 | "coverage:html": "nyc --reporter=html mocha --exit --timeout 20000 tests/**/*.test.js", | |
14 | "format": "prettier --loglevel silent --write .; prettierx --write .", | |
15 | "lint": "eslint .", | |
16 | "lint:fix": "eslint . --fix" | |
17 | }, | |
18 | "repository": { | |
19 | "type": "git", | |
20 | "url": "git+https://github.com/pioardi/poolifier.git" | |
21 | }, | |
22 | "keywords": [ | |
23 | "node", | |
24 | "thread-pool", | |
25 | "worker-threads", | |
26 | "performance", | |
27 | "cpu", | |
28 | "computing", | |
29 | "async-resource" | |
30 | ], | |
31 | "author": "pioardi", | |
32 | "contributors": [ | |
33 | { | |
34 | "name": "Christopher Quadflieg", | |
35 | "email": "chrissi92@hotmail.de", | |
36 | "url": "https://github.com/Shinigami92" | |
37 | }, | |
38 | { | |
39 | "name": "Jérôme Benoit", | |
40 | "email": "jerome.benoit@piment-noir.org", | |
41 | "url": "https://github.com/jerome-benoit" | |
42 | } | |
43 | ], | |
44 | "license": "MIT", | |
45 | "bugs": { | |
46 | "url": "https://github.com/pioardi/poolifier/issues" | |
47 | }, | |
48 | "homepage": "https://github.com/pioardi/poolifier#readme", | |
49 | "files": [ | |
50 | "lib" | |
51 | ], | |
52 | "devDependencies": { | |
53 | "@types/node": "^14.14.25", | |
54 | "@typescript-eslint/eslint-plugin": "^4.15.0", | |
55 | "@typescript-eslint/parser": "^4.15.0", | |
56 | "benchmark": "^2.1.4", | |
57 | "coveralls": "^3.1.0", | |
58 | "eslint": "^7.19.0", | |
59 | "eslint-config-standard": "^16.0.2", | |
60 | "eslint-plugin-import": "^2.22.1", | |
61 | "eslint-plugin-node": "^11.1.0", | |
62 | "eslint-plugin-prettierx": "^0.17.1", | |
63 | "eslint-plugin-promise": "^4.2.1", | |
64 | "expect": "^26.6.2", | |
65 | "mocha": "^8.2.1", | |
66 | "mocha-lcov-reporter": "^1.3.0", | |
67 | "nyc": "^15.1.0", | |
68 | "prettier": "^2.2.1", | |
69 | "prettier-plugin-organize-imports": "^1.1.1", | |
70 | "prettierx": "^0.17.0", | |
71 | "rimraf": "^3.0.2", | |
72 | "typescript": "^4.1.4", | |
73 | "worker-threads-pool": "^2.0.0", | |
74 | "workerpool": "^6.1.0" | |
75 | }, | |
76 | "engines": { | |
77 | "node": ">=12.11.0", | |
78 | "npm": ">=6.0.0 <7" | |
79 | } | |
80 | } |