-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
38 lines (38 loc) · 889 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
{
"name": "osrm-isochrone",
"version": "2.0.0",
"description": "creates drivetime isochrones from osrm routes",
"osrm_release" : "5.4",
"main": "index.js",
"scripts": {
"test": "node ./test/test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mapbox/osrm-isochrone.git"
},
"keywords": [
"drivetime",
"polygon",
"osrm"
],
"author": "morganherlocker",
"license": "ISC",
"bugs": {
"url": "https://github.com/mapbox/osrm-isochrone/issues"
},
"homepage": "https://github.com/mapbox/osrm-isochrone",
"devDependencies": {
"geojson-area": "^0.1.0",
"tape": "^3.0.3"
},
"dependencies": {
"osrm": "^5.4.1",
"@turf/helpers": "^3.5.2",
"@turf/isolines": "^3.5.2",
"@turf/destination": "^3.5.2",
"@turf/bbox": "^3.5.2",
"@turf/distance": "^3.5.2",
"@turf/point-grid": "^3.5.2"
}
}