UNPKG

3.08 kBJSONView Raw
1{
2 "name": "webpack-bundle-analyzer",
3 "version": "4.4.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 && mocha --exit --require @babel/register",
28 "test-dev": "npm run install-test-webpack-versions && mocha --watch --watch-ignore test/output --require @babel/register"
29 },
30 "files": [
31 "public",
32 "lib",
33 "src"
34 ],
35 "dependencies": {
36 "acorn": "^8.0.4",
37 "acorn-walk": "^8.0.0",
38 "chalk": "^4.1.0",
39 "commander": "^6.2.0",
40 "gzip-size": "^6.0.0",
41 "lodash": "^4.17.20",
42 "opener": "^1.5.2",
43 "sirv": "^1.0.7",
44 "ws": "^7.3.1"
45 },
46 "devDependencies": {
47 "@babel/core": "7.12.3",
48 "@babel/plugin-proposal-class-properties": "7.12.1",
49 "@babel/plugin-proposal-decorators": "7.12.1",
50 "@babel/plugin-transform-runtime": "7.12.1",
51 "@babel/preset-env": "7.12.1",
52 "@babel/preset-react": "7.12.5",
53 "@babel/register": "7.12.1",
54 "@babel/runtime": "7.12.5",
55 "@carrotsearch/foamtree": "3.5.0",
56 "autoprefixer": "10.0.1",
57 "babel-eslint": "10.1.0",
58 "babel-loader": "8.1.0",
59 "babel-plugin-lodash": "3.3.4",
60 "chai": "4.2.0",
61 "chai-subset": "1.6.0",
62 "classnames": "2.2.6",
63 "core-js": "3.6.5",
64 "css-loader": "5.0.1",
65 "cssnano": "4.1.10",
66 "del": "6.0.0",
67 "eslint": "5.16.0",
68 "eslint-config-th0r": "2.0.0",
69 "eslint-config-th0r-react": "2.0.1",
70 "eslint-plugin-react": "7.21.5",
71 "exports-loader": "1.1.1",
72 "filesize": "^6.1.0",
73 "globby": "11.0.1",
74 "gulp": "4.0.2",
75 "gulp-babel": "8.0.0",
76 "mobx": "5.15.7",
77 "mobx-react": "6.3.1",
78 "mocha": "8.2.1",
79 "nightmare": "3.0.2",
80 "postcss": "8.1.6",
81 "postcss-icss-values": "2.0.2",
82 "postcss-loader": "4.0.4",
83 "preact": "10.5.5",
84 "stream-combiner2": "1.1.1",
85 "style-loader": "2.0.0",
86 "terser-webpack-plugin": "5.0.3",
87 "url-loader": "4.1.1",
88 "webpack": "5.4.0",
89 "webpack-cli": "3.3.12",
90 "webpack-dev-server": "3.11.0"
91 },
92 "keywords": [
93 "webpack",
94 "bundle",
95 "analyzer",
96 "modules",
97 "size",
98 "interactive",
99 "chart",
100 "treemap",
101 "zoomable",
102 "zoom"
103 ]
104}