UNPKG

2.95 kBJSONView Raw
1{
2 "name": "webpack-bundle-analyzer",
3 "version": "4.7.0",
4 "description": "Webpack plugin and CLI utility that represents bundle content as convenient interactive zoomable treemap",
5 "author": "Yury Grunin <grunin.ya@ya.ru>",
6 "license": "MIT",
7 "homepage": "https://github.com/webpack-contrib/webpack-bundle-analyzer",
8 "changelog": "https://github.com/webpack-contrib/webpack-bundle-analyzer/blob/master/CHANGELOG.md",
9 "bugs": {
10 "url": "https://github.com/webpack-contrib/webpack-bundle-analyzer/issues"
11 },
12 "repository": {
13 "type": "git",
14 "url": "git+https://github.com/webpack-contrib/webpack-bundle-analyzer.git"
15 },
16 "main": "lib/index.js",
17 "bin": "lib/bin/analyzer.js",
18 "engines": {
19 "node": ">= 10.13.0"
20 },
21 "scripts": {
22 "start": "gulp watch",
23 "build": "gulp build",
24 "npm-publish": "npm run lint && npm run build && npm test && npm publish",
25 "lint": "eslint --ext js,jsx .",
26 "install-test-webpack-versions": "./bin/install-test-webpack-versions.sh",
27 "test": "npm run install-test-webpack-versions && jest --runInBand",
28 "test-dev": "npm run install-test-webpack-versions && jest --watch --runInBand"
29 },
30 "files": [
31 "public",
32 "lib"
33 ],
34 "dependencies": {
35 "acorn": "^8.0.4",
36 "acorn-walk": "^8.0.0",
37 "chalk": "^4.1.0",
38 "commander": "^7.2.0",
39 "gzip-size": "^6.0.0",
40 "lodash": "^4.17.20",
41 "opener": "^1.5.2",
42 "sirv": "^1.0.7",
43 "ws": "^7.3.1"
44 },
45 "devDependencies": {
46 "@babel/core": "7.14.3",
47 "@babel/plugin-proposal-class-properties": "7.13.0",
48 "@babel/plugin-proposal-decorators": "7.14.2",
49 "@babel/plugin-transform-runtime": "7.14.3",
50 "@babel/preset-env": "7.14.2",
51 "@babel/preset-react": "7.13.13",
52 "@babel/runtime": "7.14.0",
53 "@carrotsearch/foamtree": "3.5.0",
54 "autoprefixer": "10.2.5",
55 "babel-eslint": "10.1.0",
56 "babel-loader": "8.2.2",
57 "babel-plugin-lodash": "3.3.4",
58 "chai": "4.3.4",
59 "chai-subset": "1.6.0",
60 "classnames": "2.3.1",
61 "core-js": "3.12.1",
62 "css-loader": "5.2.5",
63 "cssnano": "5.0.4",
64 "del": "6.0.0",
65 "eslint": "5.16.0",
66 "eslint-config-th0r": "2.0.0",
67 "eslint-config-th0r-react": "2.0.1",
68 "eslint-plugin-react": "7.23.2",
69 "filesize": "^6.3.0",
70 "globby": "11.0.3",
71 "gulp": "4.0.2",
72 "gulp-babel": "8.0.0",
73 "jest": "27.2.2",
74 "mobx": "5.15.7",
75 "mobx-react": "6.3.1",
76 "postcss": "8.3.0",
77 "postcss-icss-values": "2.0.2",
78 "postcss-loader": "5.3.0",
79 "preact": "10.5.13",
80 "puppeteer": "10.4.0",
81 "stream-combiner2": "1.1.1",
82 "style-loader": "2.0.0",
83 "terser-webpack-plugin": "5.1.2",
84 "url-loader": "4.1.1",
85 "webpack": "5.37.1",
86 "webpack-cli": "3.3.12",
87 "webpack-dev-server": "3.11.2"
88 },
89 "keywords": [
90 "webpack",
91 "bundle",
92 "analyzer",
93 "modules",
94 "size",
95 "interactive",
96 "chart",
97 "treemap",
98 "zoomable",
99 "zoom"
100 ]
101}