-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathpackage.json
51 lines (51 loc) · 1.5 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
{
"name": "vue-typeahead",
"version": "2.3.2",
"author": "Pantelis Peslis <[email protected]>",
"license": "MIT",
"description": "Typeahead component for Vue.js",
"keywords": [
"vue",
"typeahead"
],
"main": "dist/vue-typeahead.common.js",
"repository": {
"type": "git",
"url": "https://github.com/pespantelis/vue-typeahead.git"
},
"bugs": "https://github.com/pespantelis/vue-typeahead/issues",
"homepage": "http://pespantelis.github.io/vue-typeahead/",
"scripts": {
"lint": "eslint src demo",
"dev": "webpack-dev-server --content-base demo/ --inline --hot",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"dist": "babel src/main.js --out-file dist/vue-typeahead.common.js"
},
"peerDependencies": {
"vue": "^1.0.21 || ^2.x.x"
},
"dependencies": {
"babel-runtime": "^6.0.0"
},
"devDependencies": {
"axios": "^0.15.3",
"babel-cli": "^6.23.0",
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-stage-2": "^6.0.0",
"cross-env": "^1.0.6",
"css-loader": "^0.23.0",
"eslint": "^2.13.1",
"eslint-config-vue": "^1.0.3",
"eslint-plugin-html": "^1.5.5",
"vue-hot-reload-api": "^1.2.0",
"vue-html-loader": "^1.0.0",
"vue-loader": "^11.1.4",
"vue-style-loader": "^1.0.0",
"vue-template-compiler": "^2.2.1",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.0"
}
}