-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
45 lines (45 loc) · 1.29 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
{
"name": "vue2-typeahead",
"version": "1.3.1",
"description": "typeahead for vue2",
"author": "mizuka <[email protected]>",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"build-lib": "vue-cli-service build --target lib --dest lib --name vue2-typeahead src/components/TypeAhead.vue",
"test:unit": "vue-cli-service test:unit",
"changelog": "conventional-changelog -p angular -i lib/CHANGELOG.md -s -r 0",
"lint": "vue-cli-service lint"
},
"main": "lib/vue2-typeahead.umd.min.js",
"keywords": [
"vue",
"typeahead",
"vue2",
"autocomplete"
],
"repository": {
"type": "git",
"url": "https://github.com/mizuka-wu/vue2-typeahead"
},
"license": "MIT",
"dependencies": {
"axios": "^0.19.2",
"core-js": "^3.4.4",
"vue": "^2.6.10"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.1.0",
"@vue/cli-plugin-eslint": "^4.1.0",
"@vue/cli-plugin-unit-mocha": "^4.1.0",
"@vue/cli-service": "^4.1.0",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-eslint": "^10.0.3",
"chai": "^4.1.2",
"conventional-changelog-cli": "^2.0.31",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"vue-template-compiler": "^2.6.10"
}
}