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