forked from trivago/parallel-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.31 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
47
48
49
50
{
"name": "parallel-webpack",
"version": "2.6.0",
"description": "Builds multiple webpack configurations in parallel and allows you to easily create variants to those configurations.",
"main": "index.js",
"bin": {
"parallel-webpack": "bin/run.js"
},
"scripts": {
"test": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test-only": "jest"
},
"keywords": [
"webpack",
"parallel"
],
"author": "Patrick Gotthardt <[email protected]>",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/trivago/parallel-webpack"
},
"bugs": {
"url": "https://github.com/trivago/parallel-webpack/issues"
},
"peerDependencies": {
"webpack": "^1.12.9 || ^2.2.0 || ^3.x || ^4.x"
},
"dependencies": {
"ajv": "^4.9.2",
"bluebird": "^3.0.6",
"chalk": "^1.1.1",
"interpret": "^1.0.1",
"lodash.assign": "^4.0.8",
"lodash.endswith": "^4.0.1",
"lodash.flatten": "^4.2.0",
"minimist": "^1.2.0",
"node-ipc": "^9.1.0",
"pluralize": "^1.2.1",
"supports-color": "^3.1.2",
"worker-farm": "^1.3.1"
},
"devDependencies": {
"babel-jest": "^20.0.3",
"babel-preset-env": "^1.5.2",
"coveralls": "^2.13.1",
"jest": "^20.0.4",
"webpack": "^3.4.1"
}
}