-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"name": "vue-confirmation-button",
"version": "1.0.1",
"description": "A reusable Vuejs component for asking a user for input confirmation",
"main": "dist/vue-confirmation-button.vue",
"scripts": {
"dev": "webpack-dev-server --host 0.0.0.0 --config ./webpack.development.config.js",
"prod": "webpack -p --config ./webpack.production.config.js"
},
"author": "Rohan Likhite <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/imRohan/vue-confirmation-button.git"
},
"keywords": [
"vue",
"vuejs",
"component",
"confirmation",
"button",
"ui"
],
"bugs": {
"url": "https://github.com/imRohan/vue-confirmation-button/issues"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"copy-webpack-plugin": "^4.3.1",
"css-loader": "^0.28.3",
"html-loader": "^0.5.1",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.1",
"uglifyjs-webpack-plugin": "^1.1.8",
"vue": "^2.5.13",
"vue-loader": "^13.7.0",
"vue-template-compiler": "^2.5.13",
"webpack": "^3.10.0",
"webpack-dev-server": ">=3.1.11",
"webpack-merge": "^4.1.1"
}
}