package.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. {
  2. "name": "webpack-bundle-analyzer",
  3. "version": "4.9.1",
  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. "@discoveryjs/json-ext": "0.5.7",
  36. "acorn": "^8.0.4",
  37. "acorn-walk": "^8.0.0",
  38. "commander": "^7.2.0",
  39. "escape-string-regexp": "^4.0.0",
  40. "gzip-size": "^6.0.0",
  41. "is-plain-object": "^5.0.0",
  42. "lodash.debounce": "^4.0.8",
  43. "lodash.escape": "^4.0.1",
  44. "lodash.flatten": "^4.4.0",
  45. "lodash.invokemap": "^4.6.0",
  46. "lodash.pullall": "^4.2.0",
  47. "lodash.uniqby": "^4.7.0",
  48. "opener": "^1.5.2",
  49. "picocolors": "^1.0.0",
  50. "sirv": "^2.0.3",
  51. "ws": "^7.3.1"
  52. },
  53. "devDependencies": {
  54. "@babel/core": "7.14.3",
  55. "@babel/plugin-proposal-class-properties": "7.13.0",
  56. "@babel/plugin-proposal-decorators": "7.14.2",
  57. "@babel/plugin-transform-runtime": "7.14.3",
  58. "@babel/preset-env": "7.14.2",
  59. "@babel/preset-react": "7.13.13",
  60. "@babel/runtime": "7.14.0",
  61. "@carrotsearch/foamtree": "3.5.0",
  62. "autoprefixer": "10.2.5",
  63. "babel-eslint": "10.1.0",
  64. "babel-loader": "8.2.2",
  65. "babel-plugin-lodash": "3.3.4",
  66. "chai": "4.3.4",
  67. "chai-subset": "1.6.0",
  68. "classnames": "2.3.1",
  69. "core-js": "3.12.1",
  70. "css-loader": "5.2.5",
  71. "cssnano": "5.0.4",
  72. "del": "6.0.0",
  73. "eslint": "5.16.0",
  74. "eslint-config-th0r": "2.0.0",
  75. "eslint-config-th0r-react": "2.0.1",
  76. "eslint-plugin-react": "7.23.2",
  77. "filesize": "^6.3.0",
  78. "globby": "11.0.3",
  79. "gulp": "4.0.2",
  80. "gulp-babel": "8.0.0",
  81. "jest": "27.2.2",
  82. "lodash.memoize": "^4.1.2",
  83. "lodash.merge": "^4.6.2",
  84. "lodash.partial": "^4.2.1",
  85. "mobx": "5.15.7",
  86. "mobx-react": "6.3.1",
  87. "postcss": "8.3.0",
  88. "postcss-icss-values": "2.0.2",
  89. "postcss-loader": "5.3.0",
  90. "preact": "10.5.13",
  91. "puppeteer": "10.4.0",
  92. "stream-combiner2": "1.1.1",
  93. "style-loader": "2.0.0",
  94. "terser-webpack-plugin": "5.1.2",
  95. "url-loader": "4.1.1",
  96. "webpack": "5.76.0",
  97. "webpack-cli": "3.3.12",
  98. "webpack-dev-server": "3.11.3"
  99. },
  100. "keywords": [
  101. "webpack",
  102. "bundle",
  103. "analyzer",
  104. "modules",
  105. "size",
  106. "interactive",
  107. "chart",
  108. "treemap",
  109. "zoomable",
  110. "zoom"
  111. ]
  112. }