forked from tyrasd/overpass-wizard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 934 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
39
40
41
42
{
"name": "overpass-wizard",
"version": "0.0.6",
"description": "Human friendly way to generate Overpass API queries",
"main": "index.js",
"scripts": {
"pretest": "npm ls --depth=Infinity > /dev/null",
"test": "npm run test-lib",
"test-lib": "mocha -R spec"
},
"bin": {
"overpass-wizard": "overpass-wizard"
},
"repository": {
"type": "git",
"url": "https://github.com/tyrasd/overpass-wizard.git"
},
"keywords": [
"openstreetmap",
"Overpass API",
"geojson"
],
"author": "Martin Raifer",
"license": "MIT",
"bugs": {
"url": "https://github.com/tyrasd/overpass-wizard/issues"
},
"dependencies": {
"concat-stream": "~1.0.1",
"promise": "^7.1.1",
"request-promise": "^2.0.0",
"yargs": "^3.32.0"
},
"devDependencies": {
"expect.js": "^0.3.1",
"mocha": "^2.3.4",
"pegjs": "^0.9.0"
},
"browser": {
"request-promise": false
}
}