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