提交学习笔记专用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

108 lines
3.1 KiB

  1. {
  2. "name": "webpack-bundle-analyzer",
  3. "version": "4.10.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": ">= 10.13.0"
  20. },
  21. "packageManager": "npm@6.14.8",
  22. "scripts": {
  23. "start": "gulp watch",
  24. "build": "gulp build",
  25. "npm-publish": "npm run lint && npm run build && npm test && npm publish",
  26. "lint": "eslint --ext js,jsx .",
  27. "install-test-webpack-versions": "./bin/install-test-webpack-versions.sh",
  28. "test": "npm run install-test-webpack-versions && jest --runInBand",
  29. "test-dev": "npm run install-test-webpack-versions && jest --watch --runInBand"
  30. },
  31. "files": [
  32. "public",
  33. "lib"
  34. ],
  35. "dependencies": {
  36. "@discoveryjs/json-ext": "0.5.7",
  37. "acorn": "^8.0.4",
  38. "acorn-walk": "^8.0.0",
  39. "commander": "^7.2.0",
  40. "debounce": "^1.2.1",
  41. "escape-string-regexp": "^4.0.0",
  42. "gzip-size": "^6.0.0",
  43. "html-escaper": "^2.0.2",
  44. "opener": "^1.5.2",
  45. "picocolors": "^1.0.0",
  46. "sirv": "^2.0.3",
  47. "ws": "^7.3.1"
  48. },
  49. "devDependencies": {
  50. "@babel/core": "7.14.3",
  51. "@babel/plugin-proposal-class-properties": "7.13.0",
  52. "@babel/plugin-proposal-decorators": "7.14.2",
  53. "@babel/plugin-transform-runtime": "7.14.3",
  54. "@babel/preset-env": "7.14.2",
  55. "@babel/preset-react": "7.13.13",
  56. "@babel/runtime": "7.14.0",
  57. "@carrotsearch/foamtree": "3.5.0",
  58. "autoprefixer": "10.2.5",
  59. "babel-eslint": "10.1.0",
  60. "babel-loader": "8.2.2",
  61. "babel-plugin-lodash": "3.3.4",
  62. "chai": "4.3.4",
  63. "chai-subset": "1.6.0",
  64. "classnames": "2.3.1",
  65. "core-js": "3.12.1",
  66. "css-loader": "5.2.5",
  67. "cssnano": "5.0.4",
  68. "del": "6.0.0",
  69. "eslint": "5.16.0",
  70. "eslint-config-th0r": "2.0.0",
  71. "eslint-config-th0r-react": "2.0.1",
  72. "eslint-plugin-react": "7.23.2",
  73. "filesize": "^6.3.0",
  74. "globby": "11.0.3",
  75. "gulp": "4.0.2",
  76. "gulp-babel": "8.0.0",
  77. "jest": "27.2.2",
  78. "lodash.memoize": "^4.1.2",
  79. "lodash.merge": "^4.6.2",
  80. "lodash.partial": "^4.2.1",
  81. "mobx": "5.15.7",
  82. "mobx-react": "6.3.1",
  83. "postcss": "8.3.0",
  84. "postcss-icss-values": "2.0.2",
  85. "postcss-loader": "5.3.0",
  86. "preact": "10.5.13",
  87. "puppeteer": "10.4.0",
  88. "stream-combiner2": "1.1.1",
  89. "style-loader": "2.0.0",
  90. "terser-webpack-plugin": "5.1.2",
  91. "url-loader": "4.1.1",
  92. "webpack": "5.76.0",
  93. "webpack-cli": "3.3.12",
  94. "webpack-dev-server": "3.11.3"
  95. },
  96. "keywords": [
  97. "webpack",
  98. "bundle",
  99. "analyzer",
  100. "modules",
  101. "size",
  102. "interactive",
  103. "chart",
  104. "treemap",
  105. "zoomable",
  106. "zoom"
  107. ]
  108. }