package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "@vue/babel-plugin-transform-vue-jsx",
  3. "version": "1.4.0",
  4. "description": "Babel plugin for Vue 2.0 JSX",
  5. "main": "dist/plugin.js",
  6. "repository": "https://github.com/vuejs/jsx/tree/master/packages/babel-plugin-transform-vue-jsx",
  7. "author": "Evan You",
  8. "license": "MIT",
  9. "private": false,
  10. "publishConfig": {
  11. "access": "public"
  12. },
  13. "files": [],
  14. "scripts": {
  15. "pretest:snapshot": "yarn build:test",
  16. "test:snapshot": "nyc --reporter=html --reporter=text-summary ava -v test/snapshot.js",
  17. "build:dependency": "cd ../babel-helper-vue-jsx-merge-props && yarn build",
  18. "pretest:functional": "yarn build:dependency && yarn build:test && nyc --reporter=html --reporter=text-summary babel test/functional.js --plugins ./dist/plugin.testing.js --out-file test/functional-compiled.js",
  19. "test:functional": "ava -v test/functional-compiled.js",
  20. "build": "rollup -c",
  21. "build:test": "rollup -c rollup.config.testing.js",
  22. "test": "rm -rf coverage* && yarn test:snapshot && mv coverage coverage-snapshot && yarn test:functional && mv coverage coverage-functional",
  23. "prepublish": "yarn build"
  24. },
  25. "devDependencies": {
  26. "@babel/cli": "^7.2.0",
  27. "@babel/core": "^7.2.0",
  28. "@babel/preset-env": "^7.2.0",
  29. "@vue/test-utils": "1.0.0-beta.26",
  30. "ava": "^0.25.0",
  31. "jsdom": "^13.0.0",
  32. "jsdom-global": "^3.0.2",
  33. "nyc": "^12.0.2",
  34. "rollup": "^0.67.4",
  35. "rollup-plugin-babel": "4.0.3",
  36. "rollup-plugin-babel-minify": "^6.2.0",
  37. "rollup-plugin-istanbul": "^2.0.1",
  38. "vue": "^2.5.17",
  39. "vue-template-compiler": "^2.5.17"
  40. },
  41. "dependencies": {
  42. "@babel/helper-module-imports": "^7.0.0",
  43. "@babel/plugin-syntax-jsx": "^7.2.0",
  44. "@vue/babel-helper-vue-jsx-merge-props": "^1.4.0",
  45. "html-tags": "^2.0.0",
  46. "lodash.kebabcase": "^4.1.1",
  47. "svg-tags": "^1.0.0"
  48. },
  49. "peerDependencies": {
  50. "@babel/core": "^7.0.0-0"
  51. },
  52. "nyc": {
  53. "exclude": [
  54. "dist",
  55. "test"
  56. ]
  57. },
  58. "gitHead": "6566e12067f5d6c02d3849b574a1b84de5634008"
  59. }