forked from jarvisniu/vue-zoomer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@ikoncept/vue-zoomer",
"version": "0.3.12",
"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",
"lint": "eslint --fix --ext .js,.vue src/ --cache"
},
"keywords": [
"zoom",
"zoomer",
"image",
"vue"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ikoncept/vue-zoomer.git"
},
"author": "Daniel Källstrand Modig <daniel@ikoncept.se>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.0",
"@babel/eslint-plugin": "^7.14.5",
"@vue/component-compiler-utils": "^2.6.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"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": [
"dist/**/*"
],
"bugs": {
"url": "https://github.com/ikoncept/vue-zoomer/issues"
},
"homepage": "https://github.com/ikoncept/vue-zoomer#readme",
"dependencies": {
"lodash.debounce": "^4.0.8"
}
}