-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 842 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 842 Bytes
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": "git@github.com: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 <per@liedman.net>",
"license": "ISC",
"dependencies": {
"@xmldom/xmldom": "^0.8.2",
"concat-stream": "^2.0.0",
"JSONStream": "^1.3.5",
"minimist": "^1.2.6",
"osmtogeojson": "^3.0.0-beta.4",
"request": "^2.88.0",
"xhr": "^2.6.0"
},
"devDependencies": {
"faucet": "0.0.1",
"tape": "^5.5.3"
}
}