Add node TS type definition (#101)
[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": {
ebc664ac 49 "@types/node": "^14.14.25",
777b7824
S
50 "@typescript-eslint/eslint-plugin": "^4.15.0",
51 "@typescript-eslint/parser": "^4.15.0",
57df5469 52 "benchmark": "^2.1.4",
5ed1b3a8 53 "coveralls": "^3.1.0",
fa699c42 54 "eslint": "^7.19.0",
777b7824
S
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",
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",
4ade5f1f 69 "typescript": "^4.1.3"
da1f2de4
E
70 },
71 "engines": {
50aa7901
S
72 "node": ">=12.11.0",
73 "npm": ">=6.0.0 <7"
777b7824 74 }
6dc67cda 75}