-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 866 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 866 Bytes
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
{
"name": "vue-v-carousel",
"description": "A Vue.js component",
"version": "0.0.5",
"author": "Edgar Xolop <edgarxoix@gmail.com>",
"license": "MIT",
"main" : "./src/Carousel.vue",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
"prod": "cross-env NODE_ENV=production webpack --progress --hide-modules"
},
"dependencies": {
"vue": "^2.4.4",
"bulma": "^0.6.1"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"devDependencies": {
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"file-loader": "^1.1.4",
"vue-loader": "^13.0.5",
"vue-template-compiler": "^2.4.4",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1"
},
"files": [
"src/Carousel.vue",
"LICENSE",
"HISTORY.md",
"README.md",
"SECURITY.md"
]
}