-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
30 lines (30 loc) · 999 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
{
"name": "geojson-network-parser",
"version": "0.1.3",
"description": "A utility that turns a GeoJSON FeatureCollection of a road network and turns it into a routable graph",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "watchify index.js -t babelify -o dist/geojson-network-parser.js --verbose",
"build": "browserify index.js -t babelify --verbose > dist/geojson-network-parser.js"
},
"dependencies": {
"@turf/turf": "*",
"node-dijkstra": "^2.4.1",
"rbush": "*",
"rbush-knn": "*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kronick/geojson-network-parser.git"
},
"author": "Sam Kronick <[email protected]> (http://samkronick.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/kronick/geojson-network-parser/issues"
},
"homepage": "https://github.com/kronick/geojson-network-parser#readme",
"devDependencies": {
"babelify": "^7.3.0"
}
}