package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. {
  2. "name": "webpack-bundle-analyzer",
  3. "version": "4.3.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. "autoprefixer": "10.0.1",
  56. "babel-eslint": "10.1.0",
  57. "babel-loader": "8.1.0",
  58. "babel-plugin-lodash": "3.3.4",
  59. "chai": "4.2.0",
  60. "chai-subset": "1.6.0",
  61. "classnames": "2.2.6",
  62. "core-js": "3.6.5",
  63. "css-loader": "5.0.1",
  64. "cssnano": "4.1.10",
  65. "del": "6.0.0",
  66. "eslint": "5.16.0",
  67. "eslint-config-th0r": "2.0.0",
  68. "eslint-config-th0r-react": "2.0.1",
  69. "eslint-plugin-react": "7.21.5",
  70. "exports-loader": "1.1.1",
  71. "filesize": "^6.1.0",
  72. "globby": "11.0.1",
  73. "gulp": "4.0.2",
  74. "gulp-babel": "8.0.0",
  75. "mobx": "5.15.7",
  76. "mobx-react": "6.3.1",
  77. "mocha": "8.2.1",
  78. "nightmare": "3.0.2",
  79. "postcss": "8.1.6",
  80. "postcss-icss-values": "2.0.2",
  81. "postcss-loader": "4.0.4",
  82. "preact": "10.5.5",
  83. "stream-combiner2": "1.1.1",
  84. "style-loader": "2.0.0",
  85. "terser-webpack-plugin": "5.0.3",
  86. "url-loader": "4.1.1",
  87. "webpack": "5.4.0",
  88. "webpack-cli": "3.3.12",
  89. "webpack-dev-server": "3.11.0"
  90. },
  91. "keywords": [
  92. "webpack",
  93. "bundle",
  94. "analyzer",
  95. "modules",
  96. "size",
  97. "interactive",
  98. "chart",
  99. "treemap",
  100. "zoomable",
  101. "zoom"
  102. ]
  103. }