forked from geowarin/friendly-errors-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.29 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
51
52
{
"name": "@averjs/friendly-errors-webpack-plugin",
"version": "2.0.0",
"description": "Recognizes certain classes of webpack errors and cleans, aggregates and prioritizes them to provide a better Developer Experience",
"main": "index.js",
"scripts": {
"test": "eslint --ignore-pattern test/* && jest"
},
"publishConfig": {
"access": "public"
},
"files": [
"src",
"index.js"
],
"keywords": [
"friendly",
"errors",
"webpack",
"plugin"
],
"author": "Geoffroy Warin",
"repository": {
"type": "git",
"url": "git+https://github.com/exreplay/friendly-errors-webpack-plugin.git"
},
"bugs": {
"url": "https://github.com/exreplay/friendly-errors-webpack-plugin/issues"
},
"license": "MIT",
"peerDependencies": {
"webpack": "^2.0.0 || ^3.0.0 || ^4.0.0"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.3.0",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-preset-react": "^6.23.0",
"eslint": "^3.16.1",
"eslint-loader": "^1.6.1",
"expect": "^1.20.2",
"jest": "^18.1.0",
"memory-fs": "^0.4.1",
"webpack": "^2.2.1"
},
"dependencies": {
"chalk": "^1.1.3",
"error-stack-parser": "^2.0.0",
"string-width": "^2.0.0"
}
}