forked from perliedman/query-overpass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 828 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": "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 | faucet"
},
"browser": {
"request": "xhr",
"JSONStream": false,
"xmldom": false
},
"bin": {
"query-overpass": "cli.js"
},
"keywords": [
"osm",
"overpass",
"geojson"
],
"author": "Per Liedman <[email protected]>",
"license": "ISC",
"dependencies": {
"JSONStream": "^1.3.5",
"concat-stream": "^2.0.0",
"minimist": "^1.2.0",
"osmtogeojson": "^2.2.12",
"request": "^2.88.0",
"xhr": "^2.4.0",
"xmldom": "^0.3.0"
},
"devDependencies": {
"faucet": "0.0.1",
"tape": "^5.0.0"
}
}