-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "nominatim-geocoder",
"description": "Simple module for geocoding & reverse geocoding with OpenStreetMap. Caching ✔ - Promises ✔ - Rate Limit ✔ - Custom Endpoint ✔ - Automated tests ✔",
"keywords": [
"reverse geocoding",
"geocoding",
"nominatim",
"open street maps",
"openstreetmaps",
"location service"
],
"version": "0.1.4",
"author": "Thomas Nordquist",
"bugs": {
"url": "https://github.com/thomasnordquist/nominatim-geocoder/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/thomasnordquist/npm.git"
},
"main": "index.js",
"scripts": {
"test": "jasmine"
},
"dependencies": {
"axios": "^0.16.1",
"lru": "^3.1.0",
"promise-queue": "^2.2.3",
"sha1": "^1.1.1"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jasmine": "^2.2.0",
"jasmine": "^2.6.0",
"mock-http-server": "^0.1.0"
}
}