-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
37 lines (37 loc) · 924 Bytes
/
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
{
"name": "leaflet-markers-canvas",
"version": "0.2.2",
"description": "A Leaflet plugin to render many markers in a canvas instead of the DOM",
"main": "dist/leaflet-markers-canvas.min.js",
"scripts": {
"test": "exit 0",
"build": "rollup --config rollup.config.js",
"lint": "eslint src"
},
"keywords": [
"leaflet",
"canvas",
"markers"
],
"authors": [
"François Romain <[email protected]>"
],
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/francoisromain/leaflet-markers-canvas.git"
},
"bugs": {
"url": "https://github.com/francoisromain/leaflet-markers-canvas/issues"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"eslint": "^7.17.0",
"rollup": "^1.32.1",
"rollup-plugin-uglify": "^6.0.4"
},
"peerDependencies": {
"leaflet": "^1.7.1",
"rbush": "^3.0.1"
}
}