forked from soal/vue-mapbox-geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.59 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
{
"name": "vue-mapbox-geocoder",
"version": "0.2.0",
"description": "Geocoder plugin for VueMapbox",
"homepage": "https://github.com/soal/vue-mapbox-geocoder#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/soal/vue-mapbox-geocoder.git"
},
"author": {
"name": "soal",
"email": "[email protected]",
"url": "https://github.com/soal"
},
"bugs": {
"url": "https://github.com/soal/vue-mapbox-geocoder/issues"
},
"keywords": [
"vue",
"vuejs",
"mapbox",
"mapbox-gl-js",
"mapbox-gl",
"mapbox-gl-geocoder"
],
"main": "dist/vue-mapbox-geocoder.umd.js",
"module": "src/main.js",
"scripts": {
"build": "vue-cli-service build --target lib --name vue-mapbox-geocoder src/main.js",
"serve": "vue-cli-service build --target lib --name vue-mapbox-geocoder src/main.js --watch",
"lint": "vue-cli-service lint"
},
"peerDependencies": {
"vue": "^2.6.6",
"mapbox-gl": "^0.53.0",
"vue-mapbox": "^0.2.0",
"@mapbox/mapbox-gl-geocoder": "^3.1.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.4.0",
"@vue/cli-plugin-eslint": "^3.4.0",
"@vue/cli-service": "^3.4.0",
"@vue/eslint-config-prettier": "^4.0.1",
"babel-eslint": "^10.0.1",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0",
"lint-staged": "^8.1.0",
"vue-template-compiler": "^2.5.21"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}