|
| 1 | +{ |
| 2 | + "name": "@vuejs/babel-sugar-v-model", |
| 3 | + "version": "0.1.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-event-modifiers", |
| 7 | + "author": "Nick Messing <[email protected]>", |
| 8 | + "license": "MIT", |
| 9 | + "private": false, |
| 10 | + "scripts": { |
| 11 | + "pretest:snapshot": "yarn build:test", |
| 12 | + "test:snapshot": "nyc --reporter=html --reporter=text-summary ava -v test/snapshot.js", |
| 13 | + "pretest:functional": "yarn build:test && nyc --reporter=html --reporter=text-summary babel test/functional.js --plugins ./dist/plugin.testing.js,./node_modules/@vuejs/babel-plugin-transform-vue-jsx/dist/plugin.js --out-file test/functional-compiled.js", |
| 14 | + "test:functional": "ava -v test/functional-compiled.js", |
| 15 | + "build": "rollup -c", |
| 16 | + "build:test": "rollup -c rollup.config.testing.js", |
| 17 | + "test": "rm -rf coverage* && yarn test:snapshot && mv coverage coverage-snapshot && yarn test:functional && mv coverage coverage-functional", |
| 18 | + "prepublish": "yarn build" |
| 19 | + }, |
| 20 | + "devDependencies": { |
| 21 | + "@babel/cli": "^7.0.0-beta.49", |
| 22 | + "@babel/core": "^7.0.0-beta.49", |
| 23 | + "@babel/preset-env": "^7.0.0-beta.49", |
| 24 | + "ava": "^0.25.0", |
| 25 | + "jsdom": "^11.11.0", |
| 26 | + "jsdom-global": "^3.0.2", |
| 27 | + "nyc": "^11.8.0", |
| 28 | + "rollup": "^0.59.4", |
| 29 | + "rollup-plugin-babel": "beta", |
| 30 | + "rollup-plugin-istanbul": "^2.0.1", |
| 31 | + "rollup-plugin-uglify-es": "^0.0.1", |
| 32 | + "vue": "^2.5.16", |
| 33 | + "vue-template-compiler": "^2.5.16", |
| 34 | + "vue-test-utils": "^1.0.0-beta.11" |
| 35 | + }, |
| 36 | + "dependencies": { |
| 37 | + "@babel/plugin-syntax-jsx": "^7.0.0-beta.49", |
| 38 | + "@vuejs/babel-helper-vue-jsx-merge-props": "^0.1.0", |
| 39 | + "@vuejs/babel-plugin-transform-vue-jsx": "^0.1.0", |
| 40 | + "camelcase": "^5.0.0" |
| 41 | + }, |
| 42 | + "nyc": { |
| 43 | + "exclude": [ |
| 44 | + "dist", |
| 45 | + "test" |
| 46 | + ] |
| 47 | + } |
| 48 | +} |
0 commit comments