forked from MarkBind/vue-strap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.39 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "vue-strap",
"version": "1.1.36",
"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",
"jquery": "^3.3.1",
"terser-webpack-plugin": "^2.3.5",
"vue": "^2.0.0",
"vue-loader": "^15.9.1",
"webpack": "^4.42.1",
"webpack-merge": "^4.2.2"
},
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"src",
"dist"
],
"keywords": [
"bootstrap",
"vue-bootstrap",
"vue-component",
"vue"
],
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/runtime": "^7.9.2",
"@vue/test-utils": "^1.0.0-beta.33",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^25.4.0",
"babel-loader": "^8.1.0",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-vue": "^6.2.2",
"expose-loader": "^0.7.5",
"gh-pages": "^0.11.0",
"jest": "^25.4.0",
"jest-serializer-vue": "^2.0.2",
"json-loader": "^0.5.7",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"node-sass": "^4.13.1",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"vue-hot-reload-api": "^2.3.4",
"vue-jest": "^3.0.5",
"vue-template-compiler": "^2.6.11",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
],
[
"vueify"
]
]
},
"scripts": {
"build": "webpack --progress --hide-modules --config webpack.build.js",
"test": "jest",
"updatesnapshot": "jest --updateSnapshot",
"builddev": "webpack --progress --hide-modules --config webpack.dev.js",
"gpages": "gh-pages -d .",
"lint": "./node_modules/.bin/eslint . --ext .js,.vue; exit 0",
"lintwin": "./node_modules/.bin/eslint . --ext .js,.vue",
"lintfix": "./node_modules/.bin/eslint . --fix --ext .js,.vue",
"postversion": "git push && git push --tags",
"version": "npm run build && git add -A dist"
},
"author": "yuche",
"license": "MIT"
}