forked from yuche/vue-strap
-
Notifications
You must be signed in to change notification settings - Fork 132
/
package.json
79 lines (79 loc) · 1.9 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
77
78
79
{
"name": "vue-strap",
"version": "2.0.2",
"description": "Bootstrap components built with Vue.js",
"main": "dist/vue-strap.js",
"typings": "types/index.d.ts",
"repository": {
"type": "git",
"url": "wffranco/vue-strap"
},
"homepage": "http://wffranco.github.io/vue-strap/",
"directories": {
"src": "src/"
},
"dependencies": {
"bootstrap": "^3.3.7",
"vue": "^2.1.0",
"vue-template-compiler": "^2.1.0",
"vue-resource": "^1.0.3"
},
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"src",
"dist",
"types/index.d.ts"
],
"keywords": [
"vue",
"vue-bootstrap",
"vue-component",
"bootstrap"
],
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-runtime": "^6.0.0",
"css-loader": "^0.21.0",
"less": "^2.7.0",
"less-loader": "^2.2.3",
"marked": "^0.3.6",
"node-sass": "^3.10.1",
"prismjs": "^1.5.1",
"sass-loader": "^3.2.3",
"style-loader": "^0.13.1",
"vue-hot-reload-api": "^2.0.0",
"vue-html-loader": "^1.2.3",
"vue-loader": "^9.4.0",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.0"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
],
[
"vueify"
]
]
},
"scripts": {
"docs": "webpack-dev-server --inline --hot --quiet",
"builddocs": "webpack --progress --hide-modules && set 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",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags"
},
"author": "wffranco",
"license": "MIT"
}