forked from lucaspiller/offline-geocoder
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.13 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.13 KB
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
{
"name": "offline-geocoder",
"version": "1.0.0",
"description": "Offline reverse and forward geocoding for Node and React Native",
"repository": "https://github.com/lucaspiller/offline-geocoder",
"main": "src/index.js",
"bin": {
"geocoder": "bin/geocoder",
"geocoder-bench": "bin/geocoder-bench",
"geocoder-build-boundary": "bin/geocoder-build-boundary",
"geocoder-build-wof": "bin/geocoder-build-wof"
},
"react-native": "src/expo.js",
"exports": {
".": {
"react-native": "./src/expo.js",
"require": "./src/index.js",
"default": "./src/index.js"
},
"./expo": "./src/expo.js"
},
"peerDependencies": {
"sqlite3": "^5.1.7"
},
"peerDependenciesMeta": {
"sqlite3": {
"optional": true
}
},
"dependencies": {},
"devDependencies": {
"jasmine": "^5.12.0",
"sqlite3": "^5.1.7"
},
"scripts": {
"test": "jasmine",
"build:boundary": "node scripts/generate_boundary_index.js",
"build:wof": "bash scripts/generate_wof_boundary.sh",
"validate:locationiq": "node scripts/validate_with_locationiq.js"
},
"author": "Luca Spiller",
"license": "MIT"
}