forked from darrenjennings/vue-autosuggest
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
102 lines (102 loc) · 2.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
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
96
97
98
99
100
101
102
{
"name": "vue-autosuggest",
"version": "3.0.0",
"description": "Vue autosuggest component.",
"engines": {
"node": ">=12",
"npm": "> 3"
},
"scripts": {
"dev": "vite",
"prepare": "npm run build",
"build": "vite build",
"deploy": "yarn build && npm publish",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"add-contributor": "kcd-scripts contributors add",
"setup": "yarn install",
"precommit": "yarn test",
"storybook": "start-storybook -p 9001 -c .storybook -s ./.storybook/public",
"storybook:build": "build-storybook -c .storybook -o docs/storybook"
},
"files": [
"dist",
"src"
],
"main": "dist/vue-autosuggest.js",
"module": "dist/vue-autosuggest.esm.js",
"keywords": [
"vue",
"vue3",
"autosuggest",
"autocomplete",
"enhanced input",
"typeahead",
"dropdown",
"select",
"combobox",
"accessibility",
"WAI-ARIA",
"multiselect",
"multiple selection"
],
"author": "Darren Jennings <[email protected]>",
"license": "MIT",
"eslintIgnore": [
"node_modules",
"coverage",
"dist",
"docs"
],
"repository": {
"type": "git",
"url": "https://github.com/darrenjennings/vue-autosuggest.git"
},
"bugs": {
"url": "https://github.com/darrenjennings/vue-autosuggest/issues"
},
"homepage": "https://github.com/darrenjennings/vue-autosuggest#readme",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"peerDependencies": {
"vue": "^3.2.33"
},
"jest": {
"moduleFileExtensions": [
"js",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue3-jest"
},
"snapshotSerializers": [
"jest-serializer-vue"
],
"collectCoverageFrom": [
"src/**/*.{vue}",
"!**/node_modules/**",
"!**/.test.js"
],
"testEnvironmentOptions": {
"url": "http://localhost"
}
},
"dependencies": {
"vue": "^3.2.33"
},
"devDependencies": {
"@vitejs/plugin-vue": "^2.3.4",
"@vue/server-renderer": "^3.2.36",
"@vue/test-utils": "^2.3.2",
"eslint": "^8.41.0",
"eslint-plugin-vue": "^9.14.0",
"jsdom": "^19.0.0",
"vite": "^2.9.15",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^0.13.1"
}
}