package.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. "name": "webpack-bundle-analyzer",
  3. "version": "2.13.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": ">= 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-core/register",
  27. "test-dev": "mocha --watch --require babel-core/register"
  28. },
  29. "files": [
  30. "public",
  31. "lib",
  32. "src",
  33. "views"
  34. ],
  35. "dependencies": {
  36. "acorn": "^5.3.0",
  37. "bfj-node4": "^5.2.0",
  38. "chalk": "^2.3.0",
  39. "commander": "^2.13.0",
  40. "ejs": "^2.5.7",
  41. "express": "^4.16.2",
  42. "filesize": "^3.5.11",
  43. "gzip-size": "^4.1.0",
  44. "lodash": "^4.17.4",
  45. "mkdirp": "^0.5.1",
  46. "opener": "^1.4.3",
  47. "ws": "^4.0.0"
  48. },
  49. "devDependencies": {
  50. "babel-core": "6.26.0",
  51. "babel-eslint": "8.2.1",
  52. "babel-loader": "7.1.2",
  53. "babel-plugin-transform-class-properties": "6.24.1",
  54. "babel-plugin-transform-object-rest-spread": "6.26.0",
  55. "babel-plugin-transform-react-jsx": "6.24.1",
  56. "babel-preset-env": "1.6.1",
  57. "chai": "4.1.2",
  58. "chai-subset": "1.6.0",
  59. "classnames": "2.2.5",
  60. "css-loader": "0.28.9",
  61. "del": "3.0.0",
  62. "eslint": "4.16.0",
  63. "eslint-config-th0r": "1.0.0",
  64. "eslint-config-th0r-react": "1.0.0",
  65. "eslint-plugin-react": "7.6.1",
  66. "exports-loader": "0.6.4",
  67. "gulp": "4.0.0",
  68. "gulp-babel": "7.0.1",
  69. "mocha": "5.0.0",
  70. "nightmare": "2.10.0",
  71. "preact": "8.2.7",
  72. "sinon": "4.2.2",
  73. "stream-combiner2": "1.1.1",
  74. "style-loader": "0.20.1",
  75. "webpack": "3.10.0",
  76. "webpack-dev-server": "2.11.1"
  77. },
  78. "keywords": [
  79. "webpack",
  80. "bundle",
  81. "analyzer",
  82. "modules",
  83. "size",
  84. "interactive",
  85. "chart",
  86. "treemap",
  87. "zoomable",
  88. "zoom"
  89. ]
  90. }