-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.57 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
{
"name": "vue-gutter-resize",
"version": "0.10.2",
"description": "resize adjacent dom by dragging the gutter",
"author": "Shunsuke Toba <boushi_sukaimu@yahoo.co.jp>",
"scripts": {
"build": "vue-cli-service build --target lib --name vue-gutter-resize ./src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "vue-cli-service lint",
"dev": "parcel ./src/index.html -d ./docs"
},
"main": "./dist/vue-gutter-resize.umd.js",
"module": "./dist/vue-gutter-resize.umd.js",
"unpkg": "./dist/vue-gutter-resize.common.js",
"files": [
"src",
"dist"
],
"dependencies": {
"vue": "^2.6.10"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@vue/cli-plugin-eslint": "^3.8.0",
"@vue/cli-service": "^3.8.3",
"@vue/component-compiler-utils": "^3.0.0",
"@vue/eslint-config-airbnb": "^4.0.0",
"babel-eslint": "^10.0.1",
"babel-preset-env": "^1.7.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"parcel-bundler": "^1.12.3",
"vue-hot-reload-api": "^2.3.3",
"vue-template-compiler": "^2.6.10"
},
"alias": {
"vue": "./node_modules/vue/dist/vue.common.js"
},
"bugs": {
"url": "https://github.com/tomatoaiu/vue-gutter-resize/issues"
},
"homepage": "https://github.com/tomatoaiu/vue-gutter-resize#readme",
"jsdelivr": "./dist/vue-gutter-resize.common.js",
"keywords": [
"vue",
"resize",
"gutter",
"drag",
"component"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tomatoaiu/vue-gutter-resize.git"
}
}