package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "@vue/babel-plugin-transform-vue-jsx",
  3. "version": "1.2.1",
  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. "pretest:functional": "yarn build:test && nyc --reporter=html --reporter=text-summary babel test/functional.js --plugins ./dist/plugin.testing.js --out-file test/functional-compiled.js",
  18. "test:functional": "ava -v test/functional-compiled.js",
  19. "build": "rollup -c",
  20. "build:test": "rollup -c rollup.config.testing.js",
  21. "test": "rm -rf coverage* && yarn test:snapshot && mv coverage coverage-snapshot && yarn test:functional && mv coverage coverage-functional",
  22. "prepublish": "yarn build"
  23. },
  24. "devDependencies": {
  25. "@babel/cli": "^7.2.0",
  26. "@babel/core": "^7.2.0",
  27. "@babel/preset-env": "^7.2.0",
  28. "@vue/test-utils": "^1.0.0-beta.26",
  29. "ava": "^0.25.0",
  30. "jsdom": "^13.0.0",
  31. "jsdom-global": "^3.0.2",
  32. "nyc": "^12.0.2",
  33. "rollup": "^0.67.4",
  34. "rollup-plugin-babel": "4.0.3",
  35. "rollup-plugin-babel-minify": "^6.2.0",
  36. "rollup-plugin-istanbul": "^2.0.1",
  37. "vue": "^2.5.17",
  38. "vue-template-compiler": "^2.5.17"
  39. },
  40. "dependencies": {
  41. "@babel/helper-module-imports": "^7.0.0",
  42. "@babel/plugin-syntax-jsx": "^7.2.0",
  43. "@vue/babel-helper-vue-jsx-merge-props": "^1.2.1",
  44. "html-tags": "^2.0.0",
  45. "lodash.kebabcase": "^4.1.1",
  46. "svg-tags": "^1.0.0"
  47. },
  48. "peerDependencies": {
  49. "@babel/core": "^7.0.0-0"
  50. },
  51. "nyc": {
  52. "exclude": [
  53. "dist",
  54. "test"
  55. ]
  56. },
  57. "gitHead": "ebe50c0f20b991fca6588cab93965629ffbcf64f"
  58. }