-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 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
{
"name": "@wasac/mapbox-gl-admin-boundary",
"version": "1.0.0",
"description": "This module adds area switcher control which is able to zoom administrative boundaries to mapbox-gl",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"css"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && webpack --config webpack.js",
"start": "webpack-dev-server --open --hot --inline --config webpack.js",
"prepare": "npm run build"
},
"keywords": [
"mapbox",
"mapbox-gl-js",
"administrative-boundaries"
],
"author": "Jin IGARASHI",
"license": "MIT",
"devDependencies": {
"@types/mapbox-gl": "^1.13.0",
"css-loader": "^3.6.0",
"es6-promise": "^4.2.8",
"path": "^0.12.7",
"style-loader": "^1.2.1",
"typescript": "^3.9.7",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@types/geojson": "^7946.0.7",
"axios": "^0.21.1",
"mapbox-gl": "^1.13.1"
}
}