forked from yuche/vue-strap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.81 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "vue-strap",
"version": "1.1.37",
"description": "Bootstrap components built with Vue.js",
"main": "dist/vue-strap.js",
"repository": {
"type": "git",
"url": "yuche/vue-strap"
},
"homepage": "http://yuche.github.io/vue-strap/",
"directories": {
"src": "src/"
},
"dependencies": {
"bootstrap": "^3.3.7",
"vue": "^1.0.26"
},
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"src",
"dist"
],
"keywords": [
"bootstrap",
"vue-bootstrap",
"vue-component",
"vue"
],
"devDependencies": {
"babel-core": "^6.17.0",
"babel-loader": "^6.2.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.16.0",
"babel-runtime": "^6.11.0",
"css-loader": "^0.21.0",
"gh-pages": "^0.11.0",
"less": "^2.7.0",
"less-loader": "^2.2.3",
"node-sass": "^3.10.1",
"prismjs": "^1.5.1",
"sass-loader": "^3.2.3",
"style-loader": "^0.13.1",
"vue-hot-reload-api": "^1.3.3",
"vue-html-loader": "^1.2.3",
"vue-loader": "7.1.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.0"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
],
[
"vueify"
]
]
},
"scripts": {
"build": "webpack --progress --hide-modules --config webpack.build.min.js && webpack --progress --hide-modules --config webpack.build.js",
"builddocs": "webpack --progress --hide-modules && set NODE_ENV=production webpack --progress --hide-modules",
"docs": "webpack-dev-server --inline --hot --quiet",
"gpages": "gh-pages -d build",
"postversion": "git push && git push --tags",
"version": "npm run build && git add -A dist"
},
"author": "yuche",
"license": "MIT"
}