forked from jarvisniu/vue-zoomer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.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
{
"name": "vue-zoomer",
"version": "0.3.1",
"description": "Zoom the image or other thing with mouse or touch",
"main": "dist/vue-zoomer.js",
"scripts": {
"lint": "vue-cli-service lint",
"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-only": "npm run clean && parcel build src/index.js --global VueZoomer --out-file vue-zoomer.js --no-source-maps",
"build": "npm run clean && npm run build-only",
"pub": "npm run build && npm publish"
},
"keywords": [
"zoom",
"zoomer",
"image",
"vue"
],
"repository": "git@github.com:jarvisniu/vue-zoomer.git",
"author": "Jarvis Niu <jarvisniu@gmail.com>",
"license": "MIT",
"devDependencies": {
"@vue/cli-plugin-eslint": "^4.2.3",
"@vue/cli-service": "^4.2.3",
"@vue/component-compiler-utils": "^2.6.0",
"@vue/eslint-config-airbnb": "^5.0.2",
"autoprefixer": "^9.7.5",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^6.2.2",
"lodash": "4.17.11",
"parcel-bundler": "^1.11.0",
"vue": "^2.6.7",
"vue-hot-reload-api": "^2.3.3",
"vue-template-compiler": "^2.6.7"
}
}