subservient
Version:
The easiest way to multithread in node.js
43 lines (42 loc) • 1.02 kB
JSON
{
"name": "subservient",
"version": "1.0.7",
"description": "The easiest way to multithread in node.js",
"main": "./out/index.js",
"typings": "./@types",
"scripts": {
"test": "jest",
"build": "rimraf ./out ./worker && tsc && cp -R ./out/worker ./worker",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codemaster138/node-threading.git"
},
"keywords": [
"Multithreading",
"Threading",
"Parallelism",
"Async",
"Backend",
"Performance"
],
"author": "Jake Sarjeant",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/codemaster138/node-threading/issues"
},
"homepage": "https://github.com/codemaster138/node-threading#readme",
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.6",
"jest": "^26.6.3",
"ts-jest": "^26.4.3",
"typescript": "^4.0.5"
},
"dependencies": {
"@types/uuid": "^8.3.0",
"debug": "^4.2.0",
"uuid": "^8.3.1"
}
}