package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "@vue/babel-sugar-v-on",
  3. "version": "1.0.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. "files": [],
  11. "scripts": {
  12. "pretest:snapshot": "yarn build:test",
  13. "test:snapshot": "nyc --reporter=html --reporter=text-summary ava -v test/snapshot.js",
  14. "pretest:functional": "yarn build:test && nyc --reporter=html --reporter=text-summary babel test/functional.js --plugins ./dist/plugin.testing.js,./node_modules/@vue/babel-plugin-transform-vue-jsx/dist/plugin.js --out-file test/functional-compiled.js",
  15. "test:functional": "ava -v test/functional-compiled.js",
  16. "build": "rollup -c",
  17. "build:test": "rollup -c rollup.config.testing.js",
  18. "test": "rm -rf coverage* && yarn test:snapshot && mv coverage coverage-snapshot && yarn test:functional && mv coverage coverage-functional",
  19. "prepublish": "yarn build"
  20. },
  21. "devDependencies": {
  22. "@babel/cli": "^7.2.0",
  23. "@babel/core": "^7.2.0",
  24. "@babel/preset-env": "^7.2.0",
  25. "@vue/test-utils": "^1.0.0-beta.26",
  26. "ava": "^0.25.0",
  27. "jsdom": "^13.0.0",
  28. "jsdom-global": "^3.0.2",
  29. "ninos": "^2.0.2",
  30. "nyc": "^13.1.0",
  31. "rollup": "^0.67.4",
  32. "rollup-plugin-babel": "4.0.3",
  33. "rollup-plugin-babel-minify": "^6.2.0",
  34. "rollup-plugin-istanbul": "^2.0.1",
  35. "vue": "^2.5.17",
  36. "vue-template-compiler": "^2.5.17"
  37. },
  38. "dependencies": {
  39. "@babel/plugin-syntax-jsx": "^7.2.0",
  40. "@vue/babel-plugin-transform-vue-jsx": "^1.0.0",
  41. "camelcase": "^5.0.0"
  42. },
  43. "nyc": {
  44. "exclude": [
  45. "dist",
  46. "test"
  47. ]
  48. },
  49. "gitHead": "32ab59219d8c6fef6ba8ff399132872bc7fff477"
  50. }