package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "babel-preset-vue",
  3. "version": "1.2.1",
  4. "description": "Babel preset for all Vue plugins.",
  5. "license": "MIT",
  6. "repository": "egoist/babel-preset-vue",
  7. "author": {
  8. "name": "EGOIST",
  9. "email": "0x142857@gmail.com",
  10. "url": "github.com/egoist"
  11. },
  12. "engines": {
  13. "node": ">=4"
  14. },
  15. "main": "dist/babel-preset-vue.common.js",
  16. "unpkg": "dist/babel-preset-vue.js",
  17. "cdn": "dist/babel-preset-vue.js",
  18. "scripts": {
  19. "test": "echo lol",
  20. "prepublish": "npm run build",
  21. "build": "bili index.js --format umd,cjs --compress umd --module-name PresetVue"
  22. },
  23. "files": [
  24. "dist"
  25. ],
  26. "keywords": [
  27. "babel",
  28. "vue",
  29. "jsx",
  30. "preset"
  31. ],
  32. "dependencies": {
  33. "babel-helper-vue-jsx-merge-props": "^2.0.2",
  34. "babel-plugin-jsx-event-modifiers": "^2.0.2",
  35. "babel-plugin-jsx-v-model": "^2.0.1",
  36. "babel-plugin-jsx-vue-functional": "^2.1.0",
  37. "babel-plugin-syntax-jsx": "^6.18.0",
  38. "babel-plugin-transform-vue-jsx": "^3.5.0"
  39. },
  40. "devDependencies": {
  41. "bili": "^0.17.2"
  42. }
  43. }