-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.02 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
{
"name": "osm-flatten-relation",
"description": "Resolve an OpenStreetMap relation recursively.",
"version": "2.0.1",
"type": "module",
"main": "index.js",
"files": [
"index.js",
"cli.js"
],
"bin": {
"osm-flatten-relation": "./cli.js"
},
"keywords": [
"osm",
"openstreetmap",
"relation",
"flatten",
"tree",
"recursive"
],
"author": "Jannis R <mail@jannisr.de>",
"homepage": "https://github.com/derhuerst/osm-flatten-relation",
"repository": "derhuerst/osm-flatten-relation",
"bugs": "https://github.com/derhuerst/osm-flatten-relation/issues",
"license": "ISC",
"engines": {
"node": ">=16"
},
"dependencies": {
"ansi-diff-stream": "^1.2.0",
"fetch-ponyfill": "^7.1.0",
"mri": "^1.1.0",
"ndjson": "^2.0.0",
"pinkie-promise": "^2.0.1",
"queue": "^6.0.0",
"xml2js": "^0.6.0"
},
"devDependencies": {
"eslint": "^8.18.0",
"tap-spec": "^5.0.0",
"tape": "^5.0.0"
},
"scripts": {
"lint": "eslint .",
"test": "tape test.js | tap-spec",
"prepublishOnly": "npm run lint && npm test"
}
}