ember-legacy-class-transform
Version:
The default blueprint for ember-cli addons.
37 lines (36 loc) • 958 B
JSON
{
"name": "workerpool",
"version": "2.3.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": "./index.js",
"scripts": {
"build": "gulp",
"watch": "gulp watch",
"test": "mocha test --timeout 10000",
"coverage": "istanbul cover _mocha -- test; echo \"\nCoverage report is available at ./coverage/lcov-report/index.html\""
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-util": "^3.0.7",
"istanbul": "^0.4.4",
"mocha": "^2.5.3",
"uglify-js": "2.8.29",
"webpack": "^1.13.1"
},
"dependencies": {
"object-assign": "4.1.1"
}
}