forked from mapbox/osrm-isochrone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 947 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
{
"name": "osrm-isochrone",
"version": "2.0.0",
"description": "creates drivetime isochrones from osrm routes",
"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": ">=4.9.0",
"polyline": "0.0.3",
"turf-destination": "0.0.5",
"turf-extent": "^0.1.4",
"turf-featurecollection": "^0.1.0",
"turf-grid": "^0.1.0",
"turf-isolines": "^0.1.1",
"turf-point": "^0.1.6",
"turf-quantile": "^0.1.1",
"turf-distance": "^0.1.1"
}
}