forked from euvl/vue-js-toggle-button
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.17 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
{
"name": "vue-js-toggle-button",
"description": "A toggle button component for Vue.js 2+",
"version": "1.3.2",
"author": "euvl <yev.vlasenko@gmail.com>",
"private": false,
"scripts": {
"build:client": "webpack --config ./webpack.config.js --progress --hide-modules",
"build:ssr": "webpack --config ./webpack.ssr.config.js --progress --hide-modules",
"build": "npm run build:client && npm run build:ssr"
},
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/euvl/vue-js-toggle-button.git"
},
"bugs": {
"url": "https://github.com/euvl/vue-js-toggle-button/issues"
},
"peerDependencies": {
"vue": "^2.0.0"
},
"keywords": [
"vue",
"toggle",
"switch",
"button"
],
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-preset-latest": "^6.0.0",
"css-loader": "^0.25.0",
"file-loader": "^0.9.0",
"node-sass": "^4.5.0",
"optimize-css-assets-webpack-plugin": "^3.1.1",
"sass-loader": "^5.0.1",
"vue": "^2.0.0",
"vue-loader": "^11.1.4",
"vue-template-compiler": "^2.0.0",
"webpack": "^2.2.0",
"webpack-merge": "^4.1.0"
}
}