forked from derhuerst/query-overpass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 796 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": "@derhuerst/query-overpass",
"description": "Query the OpenStreetMap Overpass API.",
"version": "1.0.1",
"main": "index.js",
"files": [
"index.js"
],
"keywords": [
"osm",
"openstreetmap",
"overpass",
"api",
"client"
],
"author": "Jannis R <mail@jannisr.de>",
"homepage": "https://github.com/derhuerst/query-overpass",
"repository": "derhuerst/query-overpass",
"bugs": "https://github.com/derhuerst/query-overpass/issues",
"license": "ISC",
"engines": {
"node": ">=6"
},
"dependencies": {
"fetch-ponyfill": "^6.0.0",
"p-retry": "^3.0.0",
"pinkie-promise": "^2.0.1",
"query-string": "^6.0.0"
},
"devDependencies": {
"tap-min": "^1.2.1",
"tape": "^4.7.0"
},
"scripts": {
"test": "node test.js | tap-min",
"prepublishOnly": "npm test"
}
}