| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- {
- "name": "webpack-bundle-analyzer",
- "version": "2.13.1",
- "description": "Webpack plugin and CLI utility that represents bundle content as convenient interactive zoomable treemap",
- "author": "Yury Grunin <grunin.ya@ya.ru>",
- "license": "MIT",
- "homepage": "https://github.com/webpack-contrib/webpack-bundle-analyzer",
- "changelog": "https://github.com/webpack-contrib/webpack-bundle-analyzer/blob/master/CHANGELOG.md",
- "bugs": {
- "url": "https://github.com/webpack-contrib/webpack-bundle-analyzer/issues"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/webpack-contrib/webpack-bundle-analyzer.git"
- },
- "main": "lib/index.js",
- "bin": "lib/bin/analyzer.js",
- "engines": {
- "node": ">= 4"
- },
- "scripts": {
- "start": "gulp watch",
- "build": "gulp build",
- "npm-publish": "npm run lint && npm run build && npm test && npm publish",
- "lint": "eslint --ext js,jsx .",
- "test": "mocha --exit --require babel-core/register",
- "test-dev": "mocha --watch --require babel-core/register"
- },
- "files": [
- "public",
- "lib",
- "src",
- "views"
- ],
- "dependencies": {
- "acorn": "^5.3.0",
- "bfj-node4": "^5.2.0",
- "chalk": "^2.3.0",
- "commander": "^2.13.0",
- "ejs": "^2.5.7",
- "express": "^4.16.2",
- "filesize": "^3.5.11",
- "gzip-size": "^4.1.0",
- "lodash": "^4.17.4",
- "mkdirp": "^0.5.1",
- "opener": "^1.4.3",
- "ws": "^4.0.0"
- },
- "devDependencies": {
- "babel-core": "6.26.0",
- "babel-eslint": "8.2.1",
- "babel-loader": "7.1.2",
- "babel-plugin-transform-class-properties": "6.24.1",
- "babel-plugin-transform-object-rest-spread": "6.26.0",
- "babel-plugin-transform-react-jsx": "6.24.1",
- "babel-preset-env": "1.6.1",
- "chai": "4.1.2",
- "chai-subset": "1.6.0",
- "classnames": "2.2.5",
- "css-loader": "0.28.9",
- "del": "3.0.0",
- "eslint": "4.16.0",
- "eslint-config-th0r": "1.0.0",
- "eslint-config-th0r-react": "1.0.0",
- "eslint-plugin-react": "7.6.1",
- "exports-loader": "0.6.4",
- "gulp": "4.0.0",
- "gulp-babel": "7.0.1",
- "mocha": "5.0.0",
- "nightmare": "2.10.0",
- "preact": "8.2.7",
- "sinon": "4.2.2",
- "stream-combiner2": "1.1.1",
- "style-loader": "0.20.1",
- "webpack": "3.10.0",
- "webpack-dev-server": "2.11.1"
- },
- "keywords": [
- "webpack",
- "bundle",
- "analyzer",
- "modules",
- "size",
- "interactive",
- "chart",
- "treemap",
- "zoomable",
- "zoom"
- ]
- }
|