forked from eJuke/Leaflet.Canvas-Markers
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 992 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
38
39
40
{
"name": "leaflet-canvas-marker",
"version": "0.2.0",
"description": "Leaflet plugin to display markers on canvas instead of DOM",
"main": "dist/leaflet.canvas-markers.js",
"directories": {
"example": "examples",
"lib": "dist"
},
"scripts": {
"build:test": "set NODE_ENV=test&& webpack",
"build": "set NODE_ENV=prod&& webpack",
"watch": "set NODE_ENV=test&& webpack --watch",
"prepublish": "npm run build"
},
"keywords": [
"leaflet",
"leaflet-plugin",
"marker",
"map"
],
"author": "Evgeniy Voynov <voynov.ev@gmail.com> (http://github.com/eJuke)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/eJuke/Leaflet.Canvas-Markers.git"
},
"devDependencies": {
"script-loader": "^0.7.2",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.3"
},
"peerDependencies": {
"leaflet": "^1.0.0"
},
"dependencies": {
"rbush": "^2.0.2"
}
}