-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
42 lines (42 loc) · 1.07 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
41
42
{
"name": "threadpool-js",
"version": "0.5.0",
"keywords": [
"threadpool",
"web worker"
],
"description": "General-purpose multi-threading library for javascript.",
"author": "Andy Wermke <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/andywer/threadpool-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/andywer/threadpool-js.git"
},
"devDependencies": {
"browserify": "^9.0.8",
"expect.js": "^0.3.1",
"gulp": "^3.8.11",
"gulp-babel": "^5.2.0",
"gulp-concat": "^2.5.2",
"gulp-eslint": "^0.9.0",
"gulp-gh-pages": "^0.5.1",
"gulp-mocha": "^2.0.1",
"gulp-uglify": "^1.2.0",
"husky": "^0.6.1",
"mocha": "^2.2.4",
"vinyl-source-stream": "^1.1.0",
"webworker-threads": "^0.6.2"
},
"scripts": {
"gulp": "./node_modules/.bin/gulp",
"precommit": "npm run gulp && sleep 1s && git add *.min.js",
"test": "./node_modules/.bin/mocha spec"
},
"main": "lib/ThreadPool.js",
"dependencies": {
"eventemitter3": "^1.1.1"
}
}