-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
85 lines (85 loc) · 1.67 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "osm-geojson",
"version": "0.8.4",
"description": "Get GeoJSON of a OpenStreetMap's relation from the API.",
"license": "MIT",
"homepage": "https://github.com/simonepri/osm-geojson#readme",
"repository": "github:simonepri/osm-geojson",
"bugs": {
"url": "https://github.com/simonepri/osm-geojson/issues",
"email": "[email protected]"
},
"author": "Simone Primarosa <[email protected]> (https://simoneprimarosa.com)",
"contributors": [
"Simone Primarosa <[email protected]> (https://simoneprimarosa.com)",
"Andrew Harvey <[email protected]> (https://www.alantgeo.com.au)"
],
"keywords": [
"osm-api",
"osm-geojson",
"relation",
"relations",
"convert",
"converts",
"to",
"from",
"country",
"countries",
"get",
"code",
"which",
"alpha-3",
"ISO 3166-1",
"OSM",
"geo",
"api",
"geojson",
"OpenStreetMap"
],
"main": "index.js",
"bin": {
"osm-geojson": "./cli.js"
},
"files": [
"index.js",
"cli.js"
],
"engines": {
"node": ">=6"
},
"scripts": {
"lint": "xo",
"test": "nyc ava",
"release": "npx np",
"update": "npx npm-check -u"
},
"dependencies": {
"pify": "^4.0.1",
"random-int": "^1.0.0",
"request": "^2.88.0",
"wait-then": "^0.1.2"
},
"devDependencies": {
"ava": "^1.4.1",
"execa": "^1.0.0",
"fs-extra": "^8.1.0",
"nyc": "^14.1.1",
"xo": "~0.24.0"
},
"ava": {
"verbose": true
},
"nyc": {
"reporter": [
"lcovonly",
"text"
]
},
"xo": {
"prettier": true,
"space": true,
"rules": {
"prefer-destructuring": "off"
}
}
}