package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "babel-plugin-transform-vue-jsx",
  3. "version": "3.7.0",
  4. "description": "Babel plugin for Vue 2.0 JSX",
  5. "main": "index.js",
  6. "unpkg": "dist/babel-plugin-transform-vue-jsx.min.js",
  7. "files": [
  8. "index.js",
  9. "lib",
  10. "dist"
  11. ],
  12. "scripts": {
  13. "lint": "eslint index.js",
  14. "test": "npm run lint && mocha --compilers js:babel-register",
  15. "dev": "cd example && webpack --watch",
  16. "build": "webpack -p index.js dist/babel-plugin-transform-vue-jsx.min.js --target=web --output-library=babel-plugin-transform-vue-jsx --output-library-target=umd --module-bind 'js=babel-loader'",
  17. "prepublish": "npm run build"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/vuejs/babel-plugin-transform-vue-jsx.git"
  22. },
  23. "keywords": [
  24. "vue",
  25. "babel",
  26. "jsx"
  27. ],
  28. "author": "Evan You",
  29. "license": "MIT",
  30. "bugs": {
  31. "url": "https://github.com/vuejs/babel-plugin-transform-vue-jsx/issues"
  32. },
  33. "homepage": "https://github.com/vuejs/babel-plugin-transform-vue-jsx#readme",
  34. "dependencies": {
  35. "esutils": "^2.0.2"
  36. },
  37. "peerDependencies": {
  38. "babel-helper-vue-jsx-merge-props": "^2.0.0"
  39. },
  40. "devDependencies": {
  41. "babel-cli": "^6.26.0",
  42. "babel-core": "^6.26.0",
  43. "babel-helper-vue-jsx-merge-props": "^2.0.3",
  44. "babel-loader": "^7.1.2",
  45. "babel-plugin-syntax-jsx": "^6.18.0",
  46. "babel-preset-es2015": "^6.24.1",
  47. "babel-register": "^6.26.0",
  48. "chai": "^4.1.2",
  49. "eslint": "^4.16.0",
  50. "eslint-plugin-vue-libs": "^2.1.0",
  51. "mocha": "^5.0.0",
  52. "vue": "^2.5.13",
  53. "webpack": "^3.10.0"
  54. }
  55. }