UNPKG

1.17 kBJSONView Raw
1{
2 "name": "webpack-analyze-duplication-plugin",
3 "version": "1.0.0",
4 "description": "Detect duplicated modules in your Webpack build",
5 "keywords": [
6 "webpack",
7 "duplication",
8 "analysis",
9 "report"
10 ],
11 "license": "MIT",
12 "repository": "privatenumber/webpack-analyze-duplication-plugin",
13 "funding": "https://github.com/privatenumber/webpack-analyze-duplication-plugin?sponsor=1",
14 "author": {
15 "name": "Hiroki Osame",
16 "email": "hiroki.osame@gmail.com"
17 },
18 "files": [
19 "lib"
20 ],
21 "main": "lib/webpack-analyze-duplication-plugin.js",
22 "scripts": {
23 "lint": "eslint .",
24 "test": "jest"
25 },
26 "husky": {
27 "hooks": {
28 "pre-commit": "lint-staged"
29 }
30 },
31 "lint-staged": {
32 "*.js": [
33 "eslint",
34 "jest --bail --findRelatedTests"
35 ]
36 },
37 "peerDependencies": {
38 "webpack": "4"
39 },
40 "dependencies": {
41 "byte-size": "^7.0.0",
42 "fromentries": "^1.3.2"
43 },
44 "devDependencies": {
45 "@pvtnbr/eslint-config-base": "^0.1.8",
46 "eslint": "^7.18.0",
47 "husky": "^4.3.8",
48 "jest": "^26.6.3",
49 "lint-staged": "^10.5.3",
50 "memfs": "^3.2.0",
51 "unionfs": "^4.4.0",
52 "webpack": "^4.46.0"
53 },
54 "eslintConfig": {
55 "extends": "@pvtnbr/eslint-config-base"
56 }
57}