forked from josdejong/workerpool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 888 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "workerpool",
"version": "2.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 <[email protected]> (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",
"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.6.4",
"webpack": "^1.13.1"
}
}