This repository has been archived on 2020-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
TripSit_Suite/node_modules/workerpool/package.json
2020-11-01 22:46:04 +00:00

51 lines
1.3 KiB
JSON

{
"name": "workerpool",
"license": "Apache-2.0",
"version": "6.0.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",
"files": [
"dist",
"examples",
"src",
"HISTORY.md",
"LICENSE",
"README.md"
],
"scripts": {
"build": "gulp",
"watch": "gulp watch",
"test": "npm run build && mocha test --timeout 2000",
"test:debug": "npm run build && mocha debug test --timeout 10000",
"coverage": "npm run build && istanbul cover _mocha -- test; echo \"\nCoverage report is available at ./coverage/lcov-report/index.html\"",
"_prepublishOnly": "npm run test"
},
"devDependencies": {
"date-format": "3.0.0",
"del": "5.1.0",
"fancy-log": "1.3.3",
"find-process": "1.4.3",
"gulp": "4.0.2",
"handlebars": "4.7.6",
"istanbul": "0.4.5",
"mocha": "7.1.2",
"uglify-js": "3.9.2",
"webpack": "4.43.0"
},
"dependencies": {}
}