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