-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
58 lines (58 loc) · 1.69 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
{
"name": "@isneezy/vue-selectize",
"version": "0.0.0-development",
"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",
"build": "yarn build:lib",
"lint": "vue-cli-service lint",
"semantic-release": "semantic-release"
},
"dependencies": {
"core-js": "^3.6.4",
"fuse.js": "^6.4.1",
"lodash.difference": "^4.5.0",
"vue": "^2.6.12",
"vue-click-outside": "^1.1.0"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@vue/cli-plugin-babel": "~4.5.4",
"@vue/cli-plugin-eslint": "~4.5.7",
"@vue/cli-service": "~4.5.4",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.10.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^7.0.1",
"prettier": "^2.1.1",
"semantic-release": "^17.2.1",
"vue-template-compiler": "^2.6.12",
"vuepress": "^1.5.0"
},
"peerDependencies": {
"selectize": "^0.12.6"
}
}