forked from perliedman/geojson-path-finder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 909 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-path-finder",
"version": "1.5.2",
"description": "Find shortest path through a network of GeoJSON",
"repository": "[email protected]:perliedman/geojson-path-finder.git",
"homepage": "https://github.com/perliedman/geojson-path-finder",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "tap test/*.js | tap-spec",
"prepublish": "NODE_ENV=production && mkdir -p dist && browserify --standalone PathFinder index.js | uglifyjs -c -m > dist/geojson-path-finder.min.js"
},
"author": "Per Liedman <[email protected]>",
"license": "ISC",
"dependencies": {
"@turf/distance": "^6.0.1",
"@turf/explode": "^5.1.0",
"browserify": "^17.0.0",
"tap": "^14.2.2",
"tap-spec": "^5.0.0",
"tinyqueue": "^2.0.0",
"turf-point": "^2.0.1"
},
"devDependencies": {
"@types/geojson": "^7946.0.8",
"browserify": ""
}
}