forked from gmaps-marker-clusterer/gmaps-marker-clusterer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.35 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
46
47
48
49
50
51
52
{
"name": "gmaps-marker-clusterer",
"version": "1.2.2",
"description": "The library creates and manages per-zoom-level clusters for large amounts of markers. Google API v3.",
"main": "src/markerclusterer.js",
"directories": {
"doc": "docs",
"example": "examples",
"lib": "src"
},
"repository": {
"type": "git",
"url": "[email protected]:gmaps-marker-clusterer/gmaps-marker-clusterer.git"
},
"keywords": [
"google",
"marker",
"cluster",
"clusterer",
"javascript",
"js",
"api",
"v3"
],
"scripts": {
"uglify": "uglifyjs src/markerclusterer.js -o dist/markerclusterer.min.js -c -m --verbose --source-map \"filename='markerclusterer.min.js.map',root='../',url='markerclusterer.min.js.map'\"",
"prepublishOnly": "npm run uglify"
},
"contributors": [
{
"name": "Luke Mahe"
},
{
"name": "Sebastian Hösl",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/gmaps-marker-clusterer/gmaps-marker-clusterer/issues"
},
"homepage": "https://github.com/gmaps-marker-clusterer/gmaps-marker-clusterer#readme",
"devDependencies": {
"uglify-js": "^3.1.5",
"copy": "^0.3.1"
},
"files": [
"./src/markerclusterer.js",
"./dist/markerclusterer.min.js",
"./dist/markerclusterer.min.js.map"
]
}