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