forked from jarvisniu/vue-zoomer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.47 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
42
43
44
{
"name": "vue-zoomer",
"version": "0.3.5",
"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": "[email protected]:jarvisniu/vue-zoomer.git",
"author": "Jarvis Niu <[email protected]>",
"license": "MIT",
"devDependencies": {
"@vue/component-compiler-utils": "^2.6.0",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"parcel-bundler": "^1.11.0",
"rollup": "^1.20.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-stylus-css-modules": "^1.5.0",
"rollup-plugin-terser": "^5.1.1",
"rollup-plugin-vue": "^5.0.1",
"stylus": "^0.54.5",
"vue": "^2.6.7",
"vue-hot-reload-api": "^2.3.3",
"vue-template-compiler": "^2.6.7"
},
"files": [
"dist/**/*"
]
}