-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.18 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": "maplibre-graticule",
"version": "0.0.3",
"description": "Graticuel / Grid plugin for MapLibre GL JS / Mapbox GL JS",
"keywords": [
"maplibre",
"mapbox",
"graticule",
"grid"
],
"author": "Aditya Kushwaha",
"license": "BSD",
"repository": "github:kaditya97/maplibre-graticule",
"main": "src/index.js",
"browser": "dist/maplibre-graticule.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",
"@rollup/plugin-typescript": "^11.1.3",
"@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",
"tslib": "^2.6.2"
}
}