forked from BosNaufal/vue2-autocomplete
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·70 lines (70 loc) · 2.13 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
{
"name": "vue2-autocomplete-js",
"version": "0.0.6",
"description": "Autocomplete Component for Vue 2",
"main": "./dist/vue2-autocomplete.js",
"scripts": {
"dev": "webpack-dev-server --config ./webpack/webpack.config.js --inline --hot",
"build": "webpack --config ./webpack/webpack-prod.config.js -p",
"bundle": "webpack --config ./webpack/webpack-bundle.config.js -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BosNaufal/vue2-autocomplete.git"
},
"keywords": [
"vue-js",
"autocomplete",
"remote-list",
"form",
"component",
"vue2-autocomplete",
"form-helper",
"vue-2"
],
"author": "Naufal Rabbani <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BosNaufal/vue2-autocomplete/issues"
},
"homepage": "https://github.com/BosNaufal/vue2-autocomplete#readme",
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.3.17",
"babel-helper-vue-jsx-merge-props": "^2.0.1",
"babel-loader": "^6.2.0",
"babel-plugin-syntax-jsx": "^6.13.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-plugin-transform-vue-jsx": "^3.1.0",
"babel-preset-es2015": "^6.3.13",
"babel-runtime": "^5.8.34",
"css-loader": "^0.25.0",
"es6-promise": "^3.2.1",
"eslint": "^3.8.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-config-google": "^0.7.0",
"eslint-config-standard": "^6.2.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-react": "^6.4.1",
"eslint-plugin-standard": "^2.0.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"json-loader": "^0.5.4",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"vue-hot-reload-api": "",
"vue-html-loader": "",
"vue-loader": "",
"vue-style-loader": "",
"vue-template-compiler": "^2.1.7",
"webpack": "^1.12.9",
"webpack-combine-loaders": "^2.0.0",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"vue": ""
}
}