forked from haoqunjiang/friendly-errors-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.08 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.08 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@x-wp/friendly-errors-webpack-plugin",
"version": "0.0.0",
"description": "Recognizes certain classes of webpack errors and cleans, aggregates and prioritizes them to provide a better Developer Experience",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "eslint --ignore-pattern \"test/**\" --ext .js,.ts . && jest --testEnvironment node",
"prepack": "npm run build",
"prepare": "husky"
},
"files": [
"dist"
],
"keywords": [
"friendly",
"errors",
"webpack",
"plugin"
],
"author": "Geoffroy Warin",
"repository": {
"type": "git",
"url": "git+https://github.com/x-wp/friendly-errors-webpack-plugin.git"
},
"bugs": {
"url": "https://github.com/x-wp/friendly-errors-webpack-plugin/issues"
},
"homepage": "https://github.com/x-wp/friendly-errors-webpack-plugin#readme",
"license": "MIT",
"publishConfig": {
"access": "public",
"provenance": true
},
"peerDependencies": {
"webpack": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-transform-async-to-generator": "^7.5.0",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"autoprefixer": "^10.0.0",
"babel-loader": "^8.0.6",
"css-loader": "^6.0.0",
"eslint": "^8.57.0",
"eslint-plugin-n": "^16.6.2",
"eslint-webpack-plugin": "^4.0.1",
"husky": "^9.0.0",
"jest": "^29.7.0",
"memfs": "^4.0.0",
"mini-css-extract-plugin": "^2.0.0",
"postcss-loader": "^7.0.0",
"sass": "^1.20.1",
"sass-loader": "^13.0.0",
"style-loader": "^3.0.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.0",
"webpack": "^5.0.0"
},
"dependencies": {
"chalk": "^4.1.2",
"error-stack-parser": "^2.0.6",
"string-width": "^4.2.3",
"strip-ansi": "^6.0.1"
}
}