forked from yuche/vue-strap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.48 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
{
"name": "vue-strap",
"version": "1.0.8",
"description": "Bootstrap components built with Vue.js",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "yuche/vue-strap"
},
"homepage": "http://yuche.github.io/vue-strap/",
"directories": {
"src": "src/"
},
"dependencies": {
"vue": "^1.0.8",
"bootstrap": "^3.3.5"
},
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"src",
"dist"
],
"keywords": [
"vue",
"vue-bootstrap",
"vue-component",
"bootstrap"
],
"devDependencies": {
"babel-core": "^6.1.21",
"babel-loader": "^6.1.0",
"babel-plugin-transform-runtime": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"babel-runtime": "^6.3.19",
"css-loader": "^0.21.0",
"prismjs": "^1.3.0",
"style-loader": "^0.13.0",
"vue-hot-reload-api": "^1.2.0",
"vue-html-loader": "^1.0.0",
"vue-loader": "7.1.7",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.0"
},
"browserify": {
"transform": [
[
"babelify", { "presets": ["es2015"] }
],
[
"vueify"
]
]
},
"scripts": {
"docs": "webpack-dev-server --inline --hot --quiet",
"builddocs": "webpack --progress --hide-modules && NODE_ENV=production webpack --progress --hide-modules",
"build": "webpack --progress --hide-modules --config webpack.build.min.js && webpack --progress --hide-modules --config webpack.build.js"
},
"author": "yuche",
"license": "MIT"
}