forked from hjl19911127/vue-drawer-layout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.38 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
{
"name": "vue-drawer-layout",
"version": "0.3.2",
"description": "A simple drawer layout component like Android has for Vue.js",
"main": "dist/vue-drawer-layout.js",
"files": [
"src",
"dist/*.js"
],
"scripts": {
"build": "node build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hjl19911127/vue-drawer-layout.git"
},
"keywords": [
"vue",
"vuejs",
"drawer",
"layout",
"side menu",
"sidebar",
"ui",
"components"
],
"author": "Alexander Huang",
"license": "MIT",
"bugs": {
"url": "https://github.com/hjl19911127/vue-drawer-layout/issues"
},
"homepage": "https://github.com/hjl19911127/vue-drawer-layout#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"rimraf": "^2.6.2",
"rollup": "^0.58.2",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^3.0.0",
"rollup-plugin-vue": "^3.0.0",
"vue": "^2.5.16",
"vue-template-compiler": "^2.5.16"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}