package.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. {
  2. "name": "webpack-bundle-analyzer",
  3. "version": "3.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/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": "^7.1.1",
  37. "acorn-walk": "^7.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.19",
  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. "autoprefixer": "9.5.1",
  61. "babel-eslint": "10.0.1",
  62. "babel-loader": "8.0.5",
  63. "babel-plugin-lodash": "3.3.4",
  64. "chai": "4.2.0",
  65. "chai-subset": "1.6.0",
  66. "classnames": "2.2.6",
  67. "core-js": "2.6.5",
  68. "css-loader": "2.1.1",
  69. "cssnano": "4.1.10",
  70. "del": "4.1.0",
  71. "eslint": "5.16.0",
  72. "eslint-config-th0r": "2.0.0",
  73. "eslint-config-th0r-react": "2.0.0",
  74. "eslint-plugin-react": "7.12.4",
  75. "exports-loader": "0.7.0",
  76. "gulp": "4.0.2",
  77. "gulp-babel": "8.0.0",
  78. "mobx": "5.9.4",
  79. "mobx-preact": "3.0.0",
  80. "mocha": "6.2.2",
  81. "nightmare": "3.0.1",
  82. "postcss-icss-values": "2.0.2",
  83. "postcss-loader": "3.0.0",
  84. "preact": "8.4.2",
  85. "stream-combiner2": "1.1.1",
  86. "style-loader": "0.23.1",
  87. "terser-webpack-plugin": "1.4.3",
  88. "url-loader": "1.1.2",
  89. "webpack": "4.42.0",
  90. "webpack-cli": "3.3.11",
  91. "webpack-dev-server": "3.10.3"
  92. },
  93. "keywords": [
  94. "webpack",
  95. "bundle",
  96. "analyzer",
  97. "modules",
  98. "size",
  99. "interactive",
  100. "chart",
  101. "treemap",
  102. "zoomable",
  103. "zoom"
  104. ]
  105. }