-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.32 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-bootstrap-select",
"version": "0.0.1",
"description": "A dropdown select component, that allows for single and multiple selection as well as filtering.",
"keywords": [
"vuejs",
"select",
"dropdown",
"searchable",
"filter"
],
"repository": {
"type": "git",
"url": "https://github.com/jbaysolutions/vue-bootstrap-select.git"
},
"author": "Gustavo Santos (JBay Solutions) <[email protected]> (http://www.jbaysolutions.com)",
"license": "MIT",
"main": "dist/vue-bootstrap-select.common.js",
"unpkg": "dist/vue-bootstrap-select.umd.min.js",
"scripts": {
"serve": "vue-cli-service serve",
"build-lib": "rimraf dist && vue-cli-service build --target lib ./src/components/index.js",
"lint": "vue-cli-service lint"
},
"dependencies": {
"vue2-filters": "^0.3.0",
"lodash.includes": "^4.3.0"
},
"devDependencies": {
"popper.js": "^1.14.4",
"jquery": "^3.3.1",
"bootstrap": "^4.1.3",
"babel-plugin-transform-flow-comments": "^6.7.0",
"@vue/cli-plugin-babel": "^3.0.4",
"@vue/cli-plugin-eslint": "^3.0.4",
"@vue/cli-service": "^3.0.4",
"@vue/eslint-config-standard": "^3.0.4",
"node-sass": "^4.9.0",
"sass-loader": "^7.0.1",
"vue-template-compiler": "^2.5.17",
"vue": "^2.5.17",
"rimraf": "^2.6.2"
}
}