-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.05 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
{
"name": "leaflet-control-mini-map",
"version": "0.4.0",
"description": "A Leaflet plugin that provides a minimap in the corner of the map view.",
"private": false,
"license": "MIT",
"author": "Abdul Khan",
"repository": {
"type": "git",
"url": "git@github.com:abdulk1/Leaflet.MiniMap.git"
},
"homepage": "https://github.com/abdulk1/Leaflet.MiniMap",
"bugs": {
"url": "https://github.com/abdulk1/Leaflet.MiniMap/issues"
},
"main": "dist/minimap.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "rollup -c rollup.config.js"
},
"peerDependencies": {
"leaflet": ">=1.7.0"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"postcss": "^8.2.4",
"postcss-clean": "^1.2.1",
"postcss-normalize": "^9.0.0",
"prettier": "^2.2.1",
"rollup": "^2.38.0",
"rollup-plugin-copy": "3.3.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2"
},
"keywords": [
"map",
"gis",
"leaflet",
"control",
"minimap"
]
}