forked from chrisveness/latlon-geohash
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 915 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 915 Bytes
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
{
"name": "latlon-geohash",
"description": "Gustavo Niemeyer’s geocoding system",
"author": "Chris Veness",
"version": "1.0.1",
"license": "MIT",
"homepage": "http://www.movable-type.co.uk/scripts/geohash.html",
"main": "latlon-geohash.js",
"repository": {
"type": "git",
"url": "https://github.com/chrisveness/latlon-geohash"
},
"keywords": [
"geohash",
"geocode",
"geolocation",
"latitude",
"longitude"
],
"scripts": {
"test": "tape test.js | tap-spec"
},
"devDependencies": {
"browserify": "^4.0.0",
"tap-spec": "^0.2.0",
"tape": "^2.12.0"
},
"testling": {
"files": "test.js",
"browsers": [
"iexplore/7..latest",
"chrome/26..latest",
"firefox/21..latest",
"safari/4..latest",
"opera/11.5..latest",
"iphone/6..latest",
"ipad/6..latest",
"android-browser/4.2..latest"
]
}
}