forked from jawj/OverlappingMarkerSpiderfier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
53
54
{
"name": "overlapping-marker-spiderfier",
"version": "1.1.4",
"description": "Deals with overlapping markers in Google Maps JS API v3, Google Earth-style",
"main": "lib/oms.js",
"scripts": {
"clean": "rimraf lib dist",
"start": "node server.js",
"build:commonjs": "node_modules/.bin/coffee -bco lib src/oms.coffee",
"build:umd": "cross-env NODE_ENV=development webpack",
"build:umd:min": "cross-env NODE_ENV=production webpack",
"build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min",
"prepublish": "npm run clean && npm run build"
},
"files": [
"dist",
"lib",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/Bitacora-io/OverlappingMarkerSpiderfier.git"
},
"keywords": [
"overlapping",
"markers",
"clustering",
"gmaps"
],
"author": "George MacKerron",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bitacora-io/OverlappingMarkerSpiderfier/issues"
},
"homepage": "https://github.com/Bitacora-io/OverlappingMarkerSpiderfier",
"devDependencies": {
"coffee-loader": "^0.7.2",
"coffee-script": "^1.10.0",
"cross-env": "^1.0.8",
"express": "^4.13.4",
"rimraf": "^2.5.2",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"npmName": "overlapping-marker-spiderfier",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}