-
Notifications
You must be signed in to change notification settings - Fork 258
/
package.json
47 lines (47 loc) · 1.36 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
{
"name": "vue-google-autocomplete",
"version": "1.1.4",
"description": "Vue component to Google Places Autocomplete",
"main": "src/VueGoogleAutocomplete.vue",
"homepage": "https://github.com/olefirenko/vue-google-autocomplete",
"repository": {
"type": "git",
"url": "https://github.com/olefirenko/vue-google-autocomplete.git"
},
"peerDependencies": {
"vue": ">=2"
},
"keywords": [
"vue",
"google",
"autocomplete"
],
"scripts": {
"dev": "cross-env NODE_ENV=development webpack --progress --hide-modules",
"watch": "cross-env NODE_ENV=development webpack --watch --progress --hide-modules",
"hot": "cross-env NODE_ENV=development webpack-dev-server --inline --hot",
"production": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"deploy:example": "gh-pages -d example/dist",
"test": "NODE_PATH=test ava --verbose"
},
"ava": {
"require": [
"babel-register",
"./test/helpers/setup.js"
]
},
"author": "Dmytro Olefyrenko <[email protected]>",
"license": "MIT",
"devDependencies": {
"all-contributors-cli": "^6.20.0",
"ava": "^0.18.2",
"babel-register": "^6.24.0",
"browser-env": "^2.0.25",
"cross-env": "^3.2.4",
"gh-pages": "^0.12.0",
"laravel-mix": "^0.8.8",
"vue": "^2.2.1",
"vue-node": "^1.0.2",
"webpack": "^2.3.2"
}
}