-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.08 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
43
44
45
46
{
"name": "distributed-webpack",
"version": "0.2.0",
"description": "Run large webpack builds on multiple machines",
"main": "source/index.js",
"bin": {
"distwp": "source/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/perry-mitchell/distributed-webpack.git"
},
"keywords": [
"webpack",
"distributed",
"parallel",
"build"
],
"author": "Perry Mitchell <perry@perrymitchell.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/perry-mitchell/distributed-webpack/issues"
},
"homepage": "https://github.com/perry-mitchell/distributed-webpack#readme",
"dependencies": {
"copy": "^0.3.0",
"execa": "^0.6.1",
"file-exists": "^3.0.2",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"node-progress-bars": "^1.0.5",
"node-ssh": "^4.0.1",
"pify": "^2.3.0",
"rimraf": "^2.6.1",
"time-span": "^1.0.0"
},
"peerDependencies": {
"webpack": "2.x"
},
"devDependencies": {
"webpack": "^2.5.0"
}
}