UNPKG

node-worker-threads-pool-ts

Version:

Simple worker threads pool using Node's worker_threads module. Compatible with ES6+ Promise, Typescript, Async/Await.

62 lines (61 loc) 1.55 kB
{ "name": "node-worker-threads-pool-ts", "version": "1.5.1", "description": "Simple worker threads pool using Node's worker_threads module. Compatible with ES6+ Promise, Typescript, Async/Await.", "main": "src/index.js", "types": "src/index.d.ts", "scripts": { "build": "tsc -p .", "clean": "rimraf src/*.js src/*.js.map test/*.spec.js test/*.spec.js.map index.js", "test": "jest --coverage", "prepare": "npm run build" }, "repository": { "type": "git", "url": "git+https://github.com/UrielCh/node-worker-threads-pool-ts.git" }, "keywords": [ "nodejs", "async", "promise", "worker_threads", "worker", "thread", "pool", "threadpool", "multi threading", "typescript" ], "author": "mokuo", "contributors": [ { "name": "uriel chemouni", "email": "uchemouni@gmail.com", "url": "https://urielch.github.io/urielch/" } ], "license": "MIT", "bugs": { "url": "https://github.com/UrielCh/node-worker-threads-pool-ts/issues" }, "homepage": "https://github.com/UrielCh/node-worker-threads-pool-ts#readme", "devDependencies": { "@types/jest": "^26.0.20", "@types/node": "^14.0.23", "husky": "^4.2.5", "jest": "^26.6.3", "prettier": "^2.0.5", "pretty-quick": "^2.0.1", "rimraf": "^3.0.2", "ts-jest": "^26.5.0", "typescript": "^4.1.3" }, "optionalDependencies": { "ts-node": "^9.1.1", "typescript": "^4.1.3" }, "dependencies": { "ts-node": "^9.1.1", "typescript": "^4.1.5" } }