-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.04 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
{
"name": "vue2-mapbox",
"version": "0.0.2",
"description": "Mapbox component for Vue.js",
"main": "./dist/mapbox.common.js",
"repository": "https://github.com/dusansimic/vue-mapbox",
"keywords": [
"Vue.js",
"Mapbox",
"module",
"component",
"map"
],
"author": "Dušan Simić <[email protected]> (dusansimic.me)",
"license": "MIT",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"build-bundle": "vue-cli-service build --target lib --name mapbox ./src/components/Mapbox.vue",
"lint": "vue-cli-service lint"
},
"dependencies": {
"mapbox-gl": "^0.52.0"
},
"devDependencies": {
"vue": "^2.5.17",
"@vue/cli-plugin-babel": "^3.2.0",
"@vue/cli-plugin-eslint": "^3.2.0",
"@vue/cli-service": "^3.2.0",
"@vue/eslint-config-standard": "^4.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0-0",
"vue-template-compiler": "^2.5.17"
},
"files": [
"dist/*",
"src/*",
"*.json",
"*.js"
]
}