UNPKG

workerpool

Version:

Offload tasks to a pool of workers on node.js and in the browser

58 lines 1.7 kB
{ "name": "workerpool", "license": "Apache-2.0", "version": "9.2.0", "description": "Offload tasks to a pool of workers on node.js and in the browser", "homepage": "https://github.com/josdejong/workerpool", "author": "Jos de Jong <wjosdejong@gmail.com> (https://github.com/josdejong)", "repository": { "type": "git", "url": "git://github.com/josdejong/workerpool.git" }, "keywords": [ "worker", "web worker", "cluster", "pool", "isomorphic" ], "main": "src/index.js", "browser": "dist/workerpool.js", "types": "types/index.d.ts", "files": [ "dist", "src", "types", "HISTORY.md", "LICENSE", "README.md" ], "scripts": { "build": "rollup -c rollup.config.mjs && npm run build:types", "build:types": "tsc -p .", "watch": "rollup -c rollup.config.mjs -w", "test": "npm run build && mocha test && npm run test:types", "test:types": "tsc -p test/types", "test:debug": "npm run build && mocha debug test", "coverage": "npm run build && c8 mocha && c8 report --reporter=html && echo Coverage report is available at ./coverage/index.html", "prepublishOnly": "npm run test" }, "devDependencies": { "@babel/core": "7.25.8", "@babel/preset-env": "7.25.8", "@rollup/plugin-babel": "6.0.4", "@rollup/plugin-commonjs": "28.0.0", "@rollup/plugin-json": "6.1.0", "@rollup/plugin-node-resolve": "15.3.0", "@rollup/plugin-terser": "0.4.4", "@types/node": "22.7.5", "c8": "10.1.2", "core-js": "3.38.1", "date-format": "4.0.14", "find-process": "1.4.7", "fs-extra": "11.2.0", "mocha": "10.7.3", "rollup": "4.24.0", "typescript": "5.6.3" } }