1 | {
|
2 | "name": "webpack-bundle-analyzer",
|
3 | "version": "2.9.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/th0r/webpack-bundle-analyzer",
|
8 | "changelog": "https://github.com/th0r/webpack-bundle-analyzer/blob/master/CHANGELOG.md",
|
9 | "bugs": {
|
10 | "url": "https://github.com/th0r/webpack-bundle-analyzer/issues"
|
11 | },
|
12 | "repository": {
|
13 | "type": "git",
|
14 | "url": "git+https://github.com/th0r/webpack-bundle-analyzer.git"
|
15 | },
|
16 | "main": "lib/index.js",
|
17 | "bin": "lib/bin/analyzer.js",
|
18 | "engines": {
|
19 | "node": ">= 4"
|
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 | "test": "mocha --compilers js:babel-core/register",
|
27 | "test-dev": "mocha --watch --compilers js:babel-core/register"
|
28 | },
|
29 | "files": [
|
30 | "public",
|
31 | "lib",
|
32 | "src",
|
33 | "views"
|
34 | ],
|
35 | "dependencies": {
|
36 | "acorn": "^5.1.1",
|
37 | "chalk": "^1.1.3",
|
38 | "commander": "^2.9.0",
|
39 | "ejs": "^2.5.6",
|
40 | "express": "^4.15.2",
|
41 | "filesize": "^3.5.9",
|
42 | "gzip-size": "^3.0.0",
|
43 | "lodash": "^4.17.4",
|
44 | "mkdirp": "^0.5.1",
|
45 | "opener": "^1.4.3",
|
46 | "ws": "^2.3.1"
|
47 | },
|
48 | "devDependencies": {
|
49 | "babel-core": "6.24.1",
|
50 | "babel-eslint": "7.2.3",
|
51 | "babel-loader": "7.0.0",
|
52 | "babel-plugin-transform-class-properties": "6.24.1",
|
53 | "babel-plugin-transform-object-rest-spread": "6.23.0",
|
54 | "babel-plugin-transform-react-jsx": "6.24.1",
|
55 | "babel-preset-env": "1.4.0",
|
56 | "chai": "3.5.0",
|
57 | "chai-subset": "1.5.0",
|
58 | "classnames": "2.2.5",
|
59 | "css-loader": "0.28.1",
|
60 | "del": "2.2.2",
|
61 | "eslint": "3.19.0",
|
62 | "eslint-plugin-react": "7.0.0",
|
63 | "exports-loader": "0.6.4",
|
64 | "gulp": "3.9.1",
|
65 | "gulp-babel": "6.1.2",
|
66 | "gulp-plumber": "1.1.0",
|
67 | "gulp-util": "3.0.8",
|
68 | "gulp-watch": "4.3.11",
|
69 | "mocha": "3.3.0",
|
70 | "nightmare": "2.10.0",
|
71 | "preact": "8.1.0",
|
72 | "sinon": "2.2.0",
|
73 | "stream-combiner2": "1.1.1",
|
74 | "style-loader": "0.17.0",
|
75 | "webpack": "2.5.1",
|
76 | "webpack-dev-server": "2.4.5"
|
77 | },
|
78 | "keywords": [
|
79 | "webpack",
|
80 | "bundle",
|
81 | "analyzer",
|
82 | "modules",
|
83 | "size",
|
84 | "interactive",
|
85 | "chart",
|
86 | "treemap",
|
87 | "zoomable",
|
88 | "zoom"
|
89 | ]
|
90 | }
|