-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 865 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
{
"name": "osm-to-graph",
"version": "0.2.1",
"description": "Build a graph out of OSM XML",
"main": "./lib/index.js",
"bin": {
"graph": "./bin/graph.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"contributors": [
"Mathieu Albrespy <mathieu.albrespy@gmail.com>",
"Julien Christin <jul.christin@gmail.com>"
],
"license": "MIT",
"dependencies": {
"cheerio": "^0.19.0",
"lodash": "^2.4.1",
"turf-bearing": "^1.0.1",
"turf-distance": "^1.0.1",
"turf-point": "^2.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/julbaxter/osm-to-graph.git"
},
"keywords": [
"osm",
"map",
"graph"
],
"bugs": {
"url": "https://github.com/julbaxter/osm-to-graph/issues"
},
"homepage": "https://github.com/julbaxter/osm-to-graph#readme"
}