package.json 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. {
  2. "name": "vue-meta",
  3. "version": "2.4.0",
  4. "description": "Manage HTML metadata in Vue.js components with ssr support",
  5. "keywords": [
  6. "attribute",
  7. "google",
  8. "head",
  9. "helmet",
  10. "info",
  11. "metadata",
  12. "meta",
  13. "seo",
  14. "server",
  15. "ssr",
  16. "title",
  17. "universal",
  18. "vue"
  19. ],
  20. "homepage": "https://github.com/nuxt/vue-meta",
  21. "bugs": "https://github.com/nuxt/vue-meta/issues",
  22. "repository": {
  23. "type": "git",
  24. "url": "git@github.com/nuxt/vue-meta.git"
  25. },
  26. "license": "MIT",
  27. "contributors": [
  28. {
  29. "name": "Declan de Wet (@declandewet)"
  30. },
  31. {
  32. "name": "Sebastien Chopin (@Atinux)"
  33. },
  34. {
  35. "name": "Pim (@pimlie)"
  36. }
  37. ],
  38. "files": [
  39. "dist",
  40. "types/*.d.ts"
  41. ],
  42. "main": "dist/vue-meta.common.js",
  43. "web": "dist/vue-meta.js",
  44. "module": "dist/vue-meta.esm.js",
  45. "typings": "types/index.d.ts",
  46. "scripts": {
  47. "build": "rimraf dist && rollup -c scripts/rollup.config.js",
  48. "coverage": "codecov",
  49. "dev": "cd examples && yarn dev && cd ..",
  50. "docs": "vuepress dev --host 0.0.0.0 --port 3000 docs",
  51. "docs:build": "vuepress build docs",
  52. "lint": "eslint src test",
  53. "prerelease": "git checkout master && git pull -r",
  54. "release": "yarn lint && yarn test && standard-version",
  55. "test": "yarn test:unit && yarn test:e2e-ssr && yarn test:e2e-browser",
  56. "test:e2e-ssr": "jest test/e2e/ssr",
  57. "test:e2e-browser": "jest test/e2e/browser",
  58. "test:unit": "jest test/unit",
  59. "test:types": "tsc -p types/test"
  60. },
  61. "dependencies": {
  62. "deepmerge": "^4.2.2"
  63. },
  64. "devDependencies": {
  65. "@babel/cli": "^7.10.1",
  66. "@babel/core": "^7.10.2",
  67. "@babel/node": "^7.10.1",
  68. "@babel/plugin-syntax-dynamic-import": "^7.8.3",
  69. "@babel/preset-env": "^7.10.2",
  70. "@nuxtjs/eslint-config": "^3.0.0",
  71. "@vue/server-test-utils": "^1.0.3",
  72. "@vue/test-utils": "^1.0.3",
  73. "@vuepress/plugin-google-analytics": "^1.5.1",
  74. "@vuepress/plugin-pwa": "^1.5.1",
  75. "babel-core": "^7.0.0-bridge",
  76. "babel-eslint": "^10.1.0",
  77. "babel-jest": "^26.0.1",
  78. "babel-loader": "^8.1.0",
  79. "babel-plugin-dynamic-import-node": "^2.3.3",
  80. "browserstack-local": "^1.4.5",
  81. "chromedriver": "^83.0.0",
  82. "codecov": "^3.7.0",
  83. "copy-webpack-plugin": "^6.0.2",
  84. "eslint": "^7.2.0",
  85. "eslint-config-standard": "^14.1.1",
  86. "eslint-plugin-import": "^2.21.2",
  87. "eslint-plugin-jest": "^23.13.2",
  88. "eslint-plugin-node": "^11.1.0",
  89. "eslint-plugin-promise": "^4.2.1",
  90. "eslint-plugin-standard": "^4.0.1",
  91. "eslint-plugin-vue": "^6.2.2",
  92. "esm": "^3.2.25",
  93. "fs-extra": "^9.0.1",
  94. "geckodriver": "^1.19.1",
  95. "get-port": "^5.1.1",
  96. "hable": "3.0.0",
  97. "is-wsl": "^2.2.0",
  98. "jest": "^26.0.1",
  99. "jest-environment-jsdom": "^26.0.1",
  100. "jest-environment-jsdom-global": "^2.0.2",
  101. "jsdom": "^16.2.2",
  102. "lodash": "^4.17.15",
  103. "node-env-file": "^0.1.8",
  104. "puppeteer-core": "^3.3.0",
  105. "rimraf": "^3.0.2",
  106. "rollup": "^2.15.0",
  107. "rollup-plugin-babel": "^4.4.0",
  108. "rollup-plugin-commonjs": "^10.1.0",
  109. "rollup-plugin-json": "^4.0.0",
  110. "rollup-plugin-node-resolve": "^5.2.0",
  111. "rollup-plugin-replace": "^2.2.0",
  112. "rollup-plugin-terser": "^6.1.0",
  113. "selenium-webdriver": "^4.0.0-alpha.7",
  114. "standard-version": "^8.0.0",
  115. "tib": "^0.7.4",
  116. "typescript": "^3.9.5",
  117. "vue": "^2.6.11",
  118. "vue-jest": "^3.0.5",
  119. "vue-loader": "^15.9.2",
  120. "vue-router": "^3.3.2",
  121. "vue-server-renderer": "^2.6.11",
  122. "vue-template-compiler": "^2.6.11",
  123. "vuepress": "^1.5.1",
  124. "vuepress-theme-vue": "^1.1.0",
  125. "webpack": "^4.43.0"
  126. }
  127. }