-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
64 lines (64 loc) · 1.53 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
62
63
64
{
"name": "vue-slim-cropper",
"version": "0.1.1",
"description": "💇 A simple and elegant mobile image crop upload component for Vue 2.x | 简洁易用的 vue 移动端图片裁剪上传组件",
"author": "komo <[email protected]>",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/komomoo/vue-slim-cropper"
},
"keywords": [
"vue",
"mobile-web",
"image-cropper",
"image-clip"
],
"main": "dist/vue-slim-cropper.min.js",
"module": "dist/vue-slim-cropper.esm.min.js",
"scripts": {
"dev": "parcel demo/index.html -p 8080 --out-dir demo/dev",
"build:demo": "rm -rf demo/dist/ && parcel build demo/index.html --out-dir demo/dist --public-url ./",
"build": "dio",
"lint": "eslint --fix --ext .js,.vue .",
"release": "sh scripts/release.sh"
},
"eslintConfig": {
"extends": [
"@momoko/vue"
]
},
"eslintIgnore": [
"dist"
],
"babel": {
"presets": [
"@momoko/vue"
]
},
"dioConfig": {
"external": [
"cropperjs"
]
},
"browserslist": [
"iOS >= 9",
"Android >= 4.4"
],
"dependencies": {
"cropperjs": "^1.5.2"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@momoko/babel-preset-vue": "^0.2.0",
"@momoko/eslint-config-vue": "^0.2.2",
"dio-bundler": "^0.5.2",
"parcel-bundler": "^1.12.3",
"standard-version": "^4.4.0",
"vue": "^2.6.10",
"vue-hot-reload-api": "^2.3.2",
"vue-slim-loading": "^1.0.2",
"vue-template-compiler": "^2.6.10"
}
}