forked from perliedman/query-overpass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 846 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": "query-overpass",
"version": "1.5.5",
"description": "Make queries to OpenStreetMap's overpass API and output as GeoJSON",
"repository": "[email protected]:perliedman/query-overpass.git",
"main": "index.js",
"scripts": {
"test": "tape test/*.js "
},
"browser": {
"request": "xhr",
"JSONStream": false,
"xmldom": false
},
"bin": {
"query-overpass": "cli.js"
},
"keywords": [
"osm",
"overpass",
"geojson"
],
"author": "Per Liedman <[email protected]>",
"license": "ISC",
"dependencies": {
"@xmldom/xmldom": "^0.8.2",
"concat-stream": "^2.0.0",
"JSONStream": "^1.3.5",
"minimist": "^1.2.6",
"osmtogeojson": "https://[email protected]/coachaac/osmtogeojson.git",
"request": "^2.88.0",
"xhr": "^2.4.0"
},
"devDependencies": {
"tape": "^5.0.0"
}
}