| 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
 | | { |  |   "name": "vue-cropper", |  |   "version": "0.5.5", |  |   "description": "A simple Vue picture clipping plugin", |  |   "keywords": [ |  |     "vue", |  |     "cropper", |  |     "vue-cropper", |  |     "vue-component", |  |     "vue-cropper-component" |  |   ], |  |   "main": "./dist/index.js", |  |   "repository": { |  |     "type": "git", |  |     "url": "git+https://github.com/xyxiao001/vue-cropper.git" |  |   }, |  |   "author": "goodboy", |  |   "license": "ISC", |  |   "bugs": { |  |     "url": "https://github.com/xyxiao001/vue-cropper/issues" |  |   }, |  |   "homepage": "https://github.com/xyxiao001/vue-cropper#readme", |  |   "scripts": { |  |     "build": "rm -rf ./dist && webpack --config webpack.config.js" |  |   }, |  |   "devDependencies": { |  |     "vue-loader": "^15.4.2", |  |     "webpack-cli": "^3.1.2", |  |     "@babel/core": "^7.1.2", |  |     "@babel/plugin-transform-runtime": "^7.1.0", |  |     "@babel/preset-env": "^7.1.0", |  |     "babel-loader": "^8.0.0-beta.0", |  |     "babel-plugin-transform-runtime": "^6.23.0", |  |     "babel-runtime": "^6.26.0", |  |     "css-loader": "^1.0.0", |  |     "style-loader": "^0.23.1", |  |     "vue": "^2.5.17", |  |     "vue-template-compiler": "^2.5.17", |  |     "webpack": "^4.20.2", |  |     "babel-polyfill": "^6.26.0" |  |   }, |  |   "browserify": { |  |     "transform": [ |  |       "vueify" |  |     ] |  |   } |  | } | 
 |