Clean up project (#91)
[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",
50aa7901
S
9 "test": "npm run build && nyc mocha --exit --timeout 20000 tests/**/*.test.js",
10 "test:debug": "mocha --inspect-brk --exit tests/**/*.test.js",
6c8617c5 11 "coverage": "nyc report --reporter=text-lcov | coveralls",
50aa7901 12 "coverage:html": "nyc --reporter=html mocha --exit --timeout 20000 tests/**/*.test.js",
fa699c42 13 "format": "prettier --loglevel silent --write .; prettierx --write .",
777b7824
S
14 "lint": "eslint .",
15 "lint:fix": "eslint . --fix"
6dc67cda 16 },
17 "repository": {
18 "type": "git",
81c5a5cb 19 "url": "git+https://github.com/pioardi/poolifier.git"
6dc67cda 20 },
21 "keywords": [
22 "node",
23 "thread-pool",
24 "worker-threads",
25 "performance",
26 "cpu",
973cde26 27 "computing",
28 "async-resource"
6dc67cda 29 ],
6dc67cda 30 "author": "pioardi",
7e4f7b97 31 "contributors": [
32 {
33 "name": "Christopher Quadflieg",
34 "email": "chrissi92@hotmail.de",
35 "url": "https://github.com/Shinigami92"
36 },
37 {
818f2180 38 "name": "Jérôme Benoit",
7c638181 39 "email": "jerome.benoit@piment-noir.org",
7e4f7b97 40 "url": "https://github.com/jerome-benoit"
41 }
42 ],
6dc67cda 43 "license": "MIT",
44 "bugs": {
81c5a5cb 45 "url": "https://github.com/pioardi/poolifier/issues"
6dc67cda 46 },
81c5a5cb 47 "homepage": "https://github.com/pioardi/poolifier#readme",
973cde26 48 "devDependencies": {
777b7824
S
49 "@typescript-eslint/eslint-plugin": "^4.15.0",
50 "@typescript-eslint/parser": "^4.15.0",
57df5469 51 "benchmark": "^2.1.4",
5ed1b3a8 52 "coveralls": "^3.1.0",
fa699c42 53 "eslint": "^7.19.0",
777b7824
S
54 "eslint-config-prettier": "^7.2.0",
55 "eslint-config-standard": "^16.0.2",
56 "eslint-plugin-import": "^2.22.1",
57 "eslint-plugin-node": "^11.1.0",
50aa7901 58 "eslint-plugin-prettierx": "^0.17.1",
777b7824 59 "eslint-plugin-promise": "^4.2.1",
5ed1b3a8 60 "expect": "^26.6.2",
777b7824 61 "mocha": "^8.2.1",
fa699c42 62 "mocha-lcov-reporter": "^1.3.0",
5ed1b3a8 63 "nyc": "^15.1.0",
fa699c42 64 "prettier": "^2.2.1",
777b7824
S
65 "prettier-plugin-organize-imports": "^1.1.1",
66 "prettierx": "^0.17.0",
4ade5f1f 67 "rimraf": "^3.0.2",
4ade5f1f 68 "typescript": "^4.1.3"
da1f2de4
E
69 },
70 "engines": {
50aa7901
S
71 "node": ">=12.11.0",
72 "npm": ">=6.0.0 <7"
777b7824 73 }
6dc67cda 74}