forked from josdejong/workerpool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.09 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",
"license": "Apache-2.0",
"version": "3.1.2",
"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 --timeout 10000",
"test:debug": "mocha debug test --timeout 10000",
"coverage": "istanbul cover _mocha -- test; echo \"\nCoverage report is available at ./coverage/lcov-report/index.html\"",
"prepublishOnly": "npm run build && npm run test"
},
"devDependencies": {
"date-format": "2.1.0",
"fancy-log": "1.3.3",
"gulp": "4.0.2",
"istanbul": "0.4.5",
"mocha": "6.2.0",
"uglify-js": "3.6.0",
"webpack": "4.39.2"
},
"dependencies": {
"object-assign": "4.1.1"
}
}