-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
37 lines (37 loc) · 891 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
{
"author": "Ning Sun <[email protected]> (https://sunng.info/)",
"contributors": [
"Arjun Mehta <[email protected]> (http://www.arjunmehta.net/)",
"Seth Miller <[email protected]> (http://www.four43.com)",
"Zhu Zhe <[email protected]>"
],
"name": "ngeohash",
"description": "geohash library for nodejs",
"keywords": [
"geohash",
"uint64",
"geohasher",
"geocode",
"geolocation"
],
"version": "0.6.3",
"repository": {
"url": "https://github.com/sunng87/node-geohash"
},
"engines": {
"node": ">=v0.2.0"
},
"dependencies": {},
"devDependencies": {
"assert": ">=1.0",
"nodeunit": ">=0.8",
"browserify": ">=5.0"
},
"scripts": {
"test": "nodeunit tests/test.js",
"browserify": "browserify . -o ngeohash.js -s ngeohash"
},
"main": "./main",
"license": "MIT",
"readmeFilename": "README.md"
}