vue-zoomer
Version:
Zoom the image or other thing with mouse or touch
42 lines (41 loc) • 1.38 kB
JSON
{
"name": "vue-zoomer",
"version": "0.3.10",
"description": "Zoom the image or other thing with mouse or touch",
"main": "dist/vue-zoomer.min.js",
"module": "dist/vue-zoomer.esm.js",
"scripts": {
"dev-basic": "parcel demo/basic/index.html --port 5100",
"dev-gallery": "parcel demo/gallery/index.html --port 5100",
"clean": "rm -rf .cache && rm -rf dist",
"build-basic": "parcel build demo/basic/index.html --public-url . --out-dir dist/demo --out-file basic.html",
"build-gallery": "parcel build demo/gallery/index.html --public-url . --out-dir dist/demo --out-file gallery.html",
"build-lib": "rollup -c",
"build": "npm run clean && npm run build-basic && npm run build-gallery && npm run build-lib"
},
"keywords": [
"zoom",
"zoomer",
"image",
"vue"
],
"repository": "git@github.com:jarvisniu/vue-zoomer.git",
"author": "Jarvis Niu <jarvisniu@gmail.com>",
"license": "MIT",
"devDependencies": {
"@vue/component-compiler-utils": "^2.6.0",
"parcel-bundler": "^1.12.4",
"rollup": "^1.20.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.1",
"rollup-plugin-vue": "^5.0.1",
"vue": "^2.6.7",
"vue-hot-reload-api": "^2.3.3",
"vue-template-compiler": "^2.6.7"
},
"files": [
"src/**/*",
"dist/**/*"
]
}