-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
41 lines (41 loc) · 913 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
41
{
"name": "nearby-cities",
"version": "1.1.0",
"description": "Give me your coordinates and I'll tell you where the nearest cities are. Works offline.",
"main": "index.js",
"scripts": {
"build": "npm install --prefix=functions/search",
"test": "mocha && standard",
"lint": "standard --fix"
},
"repository": "https://github.com/zeke/nearby-cities",
"keywords": [
"geolocation",
"latitude",
"longitude",
"placename",
"placenames",
"geo",
"gis",
"location",
"city",
"state",
"country",
"zip",
"county"
],
"author": "Zeke Sikelianos <[email protected]> (http://zeke.sikelianos.com)",
"license": "MIT",
"devDependencies": {
"mocha": "^3.2.0",
"standard": "^14.3.4"
},
"dependencies": {
"all-the-cities": "^2.0.0",
"geokdbush": "^1.0.2",
"kdbush": "^1.0.1"
},
"standard": {
"env": ["mocha"]
}
}