package.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "@vue/babel-sugar-v-on",
  3. "version": "1.4.0",
  4. "description": "Babel syntactic sugar for v-model support in Vue JSX",
  5. "main": "dist/plugin.js",
  6. "repository": "https://github.com/vuejs/jsx/tree/master/packages/babel-sugar-v-on",
  7. "author": "Nick Messing <dot.nick.dot.messing@gmail.com>",
  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-plugin-transform-vue-jsx && 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,../babel-plugin-transform-vue-jsx/dist/plugin.js,@babel/plugin-transform-arrow-functions --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/plugin-transform-arrow-functions": "^7.12.1",
  29. "@babel/preset-env": "^7.2.0",
  30. "@vue/test-utils": "1.0.0-beta.26",
  31. "ava": "^0.25.0",
  32. "jsdom": "^13.0.0",
  33. "jsdom-global": "^3.0.2",
  34. "ninos": "^2.0.2",
  35. "nyc": "^13.1.0",
  36. "rollup": "^0.67.4",
  37. "rollup-plugin-babel": "4.0.3",
  38. "rollup-plugin-babel-minify": "^6.2.0",
  39. "rollup-plugin-istanbul": "^2.0.1",
  40. "vue": "^2.5.17",
  41. "vue-template-compiler": "^2.5.17"
  42. },
  43. "dependencies": {
  44. "@babel/plugin-syntax-jsx": "^7.2.0",
  45. "@vue/babel-plugin-transform-vue-jsx": "^1.4.0",
  46. "camelcase": "^5.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": "6566e12067f5d6c02d3849b574a1b84de5634008"
  58. }