forked from josdejong/workerpool
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.16 KB
/
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
34
35
36
37
38
39
40
{
"name": "workerpool",
"version": "2.2.4",
"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": "./dist/workerpool.js",
"browser": {
"./dist/workerpool.js": "./dist/workerpool.browser.js"
},
"scripts": {
"build": "webpack && webpack --config ./webpack.config.browser.js",
"watch-node": "webpack --watch",
"watch-browser": "webpack --watch --config ./webpack.config.browser.js",
"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": "^2.6.1"
},
"dependencies": {
"object-assign": "4.1.1"
}
}