package.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. {
  2. "name": "vue-json-pretty",
  3. "version": "2.2.4",
  4. "description": "A JSON tree view component that is easy to use and also supports data selection.",
  5. "author": "leezng <im.leezng@gmail.com>",
  6. "main": "lib/vue-json-pretty.js",
  7. "scripts": {
  8. "dev": "node build/dev-server.js",
  9. "build": "node build/build.js",
  10. "build:example": "cross-env EXAMPLE_ENV=true node build/build.js",
  11. "build:dts": "tsc --p tsconfig.dts.json && tsc-alias -p ./tsconfig.dts.json",
  12. "test": "cypress open",
  13. "lint": "eslint --ext .ts,.tsx,.vue src example"
  14. },
  15. "typings": "types/index.d.ts",
  16. "repository": {
  17. "type": "git",
  18. "url": "git@github.com:leezng/vue-json-pretty.git"
  19. },
  20. "homepage": "https://leezng.github.io/vue-json-pretty",
  21. "keywords": [
  22. "vue",
  23. "json",
  24. "format",
  25. "pretty",
  26. "vue-component"
  27. ],
  28. "license": "MIT",
  29. "bugs": {
  30. "url": "https://github.com/leezng/vue-json-pretty/issues"
  31. },
  32. "devDependencies": {
  33. "@babel/core": "^7.14.6",
  34. "@babel/plugin-transform-runtime": "^7.14.5",
  35. "@babel/preset-env": "^7.14.7",
  36. "@babel/preset-typescript": "^7.14.5",
  37. "@typescript-eslint/eslint-plugin": "^4.28.0",
  38. "@typescript-eslint/parser": "^4.28.0",
  39. "@vue/babel-plugin-jsx": "^1.0.6",
  40. "@vue/compiler-sfc": "^3.1.2",
  41. "@vue/eslint-config-typescript": "^7.0.0",
  42. "autoprefixer": "^10.2.6",
  43. "babel-loader": "^8.2.2",
  44. "chalk": "^4.1.1",
  45. "clean-webpack-plugin": "^3.0.0",
  46. "connect-history-api-fallback": "^1.3.0",
  47. "copy-webpack-plugin": "^6.4.1",
  48. "cross-env": "^7.0.3",
  49. "cross-spawn": "^7.0.3",
  50. "css-loader": "^5.2.6",
  51. "cssnano": "^4.1.11",
  52. "cypress": "^5.5.0",
  53. "eslint": "^7.29.0",
  54. "eslint-plugin-vue": "^7.11.1",
  55. "eslint-webpack-plugin": "^2.5.4",
  56. "eventsource-polyfill": "^0.9.6",
  57. "express": "^4.17.1",
  58. "file-loader": "^6.0.0",
  59. "friendly-errors-webpack-plugin": "^1.7.0",
  60. "html-webpack-plugin": "^4.5.2",
  61. "http-proxy-middleware": "^1.3.1",
  62. "less": "^3.13.1",
  63. "less-loader": "^7.3.0",
  64. "mini-css-extract-plugin": "^1.6.0",
  65. "open": "^7.4.2",
  66. "optimize-css-assets-webpack-plugin": "^5.0.7",
  67. "prettier": "^2.3.1",
  68. "selenium-server": "^3.0.1",
  69. "semver": "^7.3.5",
  70. "shelljs": "^0.8.4",
  71. "tsc-alias": "^1.6.9",
  72. "typescript": "^4.3.4",
  73. "url-loader": "^4.1.0",
  74. "vue": "^3.2.37",
  75. "vue-loader": "^16.2.0",
  76. "vue-style-loader": "^4.1.3",
  77. "webpack": "^5.40.0",
  78. "webpack-bundle-analyzer": "^4.5.0",
  79. "webpack-dev-middleware": "^3.7.3",
  80. "webpack-hot-middleware": "^2.25.1",
  81. "webpack-merge": "^5.8.0"
  82. },
  83. "engines": {
  84. "node": ">= 10.0.0",
  85. "npm": ">= 5.0.0"
  86. },
  87. "browserslist": [
  88. "> 1%",
  89. "last 10 versions",
  90. "not ie <= 11"
  91. ],
  92. "files": [
  93. "lib",
  94. "types"
  95. ],
  96. "peerDependencies": {
  97. "vue": ">=3.0.0"
  98. },
  99. "dependencies": {}
  100. }