forked from isneezy/vue-selectize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.78 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
{
"name": "@isneezy/vue-selectize",
"version": "0.5.0",
"description": "Vanila Vue.js component that mimics Selectize behaviour (no need jquery dependency) with extras",
"keywords": [
"Vue",
"Selectize",
"Select",
"Dropdown",
"Autocomplete",
"Type Ahead",
"vue-selectize"
],
"homepage": "https://ivan.vilanculo.me/vue-selectize",
"bugs": {
"url": "https://github.com/isneezy/vue-selectize/issues"
},
"license": "MIT",
"author": "Ivan Vilanculo <[email protected]> (https://ivan.vilanculo.me)",
"main": "./dist/vue-selectize.common.js",
"repository": {
"type": "git",
"url": "https://github.com/isneezy/vue-selectize.git"
},
"scripts": {
"serve": "vuepress dev docs",
"build:lib": "vue-cli-service build --target lib --name vue-selectize ./src/components/VSelectize.vue",
"docs:build": "vuepress build docs",
"lint": "vue-cli-service lint",
"preversion": "yarn build:lib",
"version": "node version && git add .",
"postversion": "git push --tags && npm publish && git push && echo \"Successfully released version $npm_package_version!\""
},
"dependencies": {
"fuse.js": "^3.2.1",
"lodash.difference": "^4.5.0",
"vue": "^2.5.16",
"vue-click-outside": "^1.0.7"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.0-beta.15",
"@vue/cli-plugin-eslint": "^3.0.0-beta.15",
"@vue/cli-service": "^3.0.0-beta.15",
"@vue/eslint-config-standard": "^3.0.0-rc.3",
"lint-staged": "^6.0.0",
"lodash.debounce": "^4.0.8",
"sass-loader": "^7.1.0",
"selectize": "^0.12.6",
"vue-template-compiler": "^2.5.16",
"vuepress": "^0.12.0"
},
"peerDependencies": {
"selectize": "^0.12.5"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}