-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
41 lines (41 loc) · 1.35 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"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/**/*"
]
}