package.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. {
  2. "name": "webpack-bundle-analyzer",
  3. "version": "3.3.2",
  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": ">= 6.14.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 --exit --require @babel/register",
  27. "test-dev": "mocha --watch --require @babel/register"
  28. },
  29. "files": [
  30. "public",
  31. "lib",
  32. "src",
  33. "views"
  34. ],
  35. "dependencies": {
  36. "acorn": "^6.0.7",
  37. "acorn-walk": "^6.1.1",
  38. "bfj": "^6.1.1",
  39. "chalk": "^2.4.1",
  40. "commander": "^2.18.0",
  41. "ejs": "^2.6.1",
  42. "express": "^4.16.3",
  43. "filesize": "^3.6.1",
  44. "gzip-size": "^5.0.0",
  45. "lodash": "^4.17.10",
  46. "mkdirp": "^0.5.1",
  47. "opener": "^1.5.1",
  48. "ws": "^6.0.0"
  49. },
  50. "devDependencies": {
  51. "@babel/core": "7.4.3",
  52. "@babel/plugin-proposal-class-properties": "7.4.0",
  53. "@babel/plugin-proposal-decorators": "7.4.0",
  54. "@babel/plugin-transform-runtime": "7.4.3",
  55. "@babel/polyfill": "7.4.3",
  56. "@babel/preset-env": "7.4.3",
  57. "@babel/preset-react": "7.0.0",
  58. "@babel/register": "7.4.0",
  59. "@babel/runtime": "7.4.3",
  60. "babel-eslint": "10.0.1",
  61. "babel-loader": "8.0.5",
  62. "babel-plugin-lodash": "3.3.4",
  63. "chai": "4.2.0",
  64. "chai-subset": "1.6.0",
  65. "classnames": "2.2.6",
  66. "core-js": "2.6.5",
  67. "css-loader": "2.1.1",
  68. "cssnano": "4.1.10",
  69. "del": "4.1.0",
  70. "eslint": "5.16.0",
  71. "eslint-config-th0r": "2.0.0",
  72. "eslint-config-th0r-react": "2.0.0",
  73. "eslint-plugin-react": "7.12.4",
  74. "exports-loader": "0.7.0",
  75. "gulp": "4.0.0",
  76. "gulp-babel": "8.0.0",
  77. "mobx": "5.9.4",
  78. "mobx-preact": "3.0.0",
  79. "mocha": "6.1.2",
  80. "nightmare": "3.0.1",
  81. "postcss-icss-values": "2.0.2",
  82. "postcss-loader": "3.0.0",
  83. "preact": "8.4.2",
  84. "stream-combiner2": "1.1.1",
  85. "style-loader": "0.23.1",
  86. "terser-webpack-plugin": "1.2.3",
  87. "url-loader": "1.1.2",
  88. "webpack": "4.29.6",
  89. "webpack-cli": "3.3.0",
  90. "webpack-dev-server": "3.3.1"
  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. }