UNPKG

nodejs-threads

Version:

A very simple functiobn based implementation of node.js worker threads

44 lines (43 loc) 1.32 kB
{ "name": "nodejs-threads", "version": "1.1.0", "description": "A very simple functiobn based implementation of node.js worker threads", "main": "lib/index.js", "scripts": { "build": "tsc --build", "build:dev": "tsc --watch", "prepublish": "npm run build", "test": "npm run build && jest --config jest.config.js", "test:dev": "jest --config jest.config.js --watchAll", "docs": "jsdoc2md --files src/**/*.ts --configure ./jsdoc2md.json > API.md" }, "repository": { "type": "git", "url": "git+https://github.com/karankraina/nodejs-threads.git" }, "keywords": [ "nodejs", "npm", "worker", "threads" ], "author": "Karan Raina <karanraina1996@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/karankraina/nodejs-threads/issues" }, "homepage": "https://github.com/karankraina/nodejs-threads#readme", "devDependencies": { "@babel/cli": "^7.16.7", "@babel/core": "^7.16.7", "@babel/plugin-proposal-class-properties": "^7.16.7", "@babel/plugin-proposal-object-rest-spread": "^7.16.7", "@babel/preset-env": "^7.16.7", "@babel/preset-typescript": "^7.16.7", "@types/node": "^17.0.5", "jest": "^27.4.5", "jsdoc-babel": "^0.5.0", "jsdoc-to-markdown": "^7.1.0", "typescript": "^4.5.4" } }