-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
38 lines (38 loc) · 1.08 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
{
"name": "maplibre-grid",
"version": "1.0.0",
"description": "Grid / graticule plugin for MapLibre GL JS / Mapbox GL JS",
"keywords": [
"maplibre",
"grid"
],
"author": "MapTiler Team <[email protected]>",
"license": "BSD",
"repository": "github:maptiler/maplibre-grid",
"main": "src/index.js",
"browser": "dist/maplibre-grid.min.js",
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -c -w",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@turf/destination": "^6.3.0",
"@turf/distance": "^6.3.0"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/plugin-transform-runtime": "^7.13.9",
"@babel/preset-env": "^7.13.9",
"@babel/runtime": "^7.13.9",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@types/maplibre-gl": "^1.13.0",
"rimraf": "^3.0.2",
"rollup": "^2.40.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^4.2.0"
}
}