package.json 754 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "vue-ref",
  3. "version": "2.0.0",
  4. "title": "Vue Ref",
  5. "description": "use the callback to get a reference like react",
  6. "keywords": [
  7. "vue",
  8. "ref",
  9. "v-ref",
  10. "vue-ref"
  11. ],
  12. "main": "index.js",
  13. "files": [
  14. "index.js"
  15. ],
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/tangjinzhou/vue-ref.git"
  19. },
  20. "license": "MIT",
  21. "bugs": {
  22. "url": "https://github.com/tangjinzhou/vue-ref/issues"
  23. },
  24. "homepage": "https://github.com/tangjinzhou/vue-ref",
  25. "eslintConfig": {
  26. "root": true,
  27. "env": {
  28. "node": true
  29. },
  30. "extends": [
  31. "plugin:vue/essential",
  32. "eslint:recommended"
  33. ],
  34. "rules": {},
  35. "parserOptions": {
  36. "parser": "babel-eslint"
  37. }
  38. }
  39. }