-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 2.2 KB
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
{
"name": "osm-tools",
"version": "0.1.0",
"description": "Streaming OSM inventory for geocoding exploration (.osm.bz2 XML and .osm.pbf)",
"main": "index0.js",
"scripts": {
"test": "node --test test/**/*.test.js",
"test:fixture": "node scripts/run-named-tests.js",
"test:index0": "node --test test/index0.test.js",
"test:pbf": "node --test test/pbf-inventory.test.js",
"test:extract": "node --test test/extract-geocode.test.js test/name-norm.test.js test/uf-br.test.js test/uf-poly.test.js test/osm-oneway.test.js",
"test:mun": "node --test test/mun-poly.test.js",
"uf:poly": "node scripts/build-uf-poly.js",
"mun:poly": "node scripts/build-mun-poly.js",
"uf:relabel": "node scripts/relabel-uf.js",
"extract:geocode": "node extract-geocode-pbf.js",
"dne:join": "node dne-geo-join.js",
"join:brasil": "node scripts/join-brasil.js",
"extract:geom-br": "node scripts/extract-brasil-way-geom.js",
"via:cruzamentos": "node scripts/dne-via-cruzamentos.js",
"test:via": "node --test test/via-cruzamentos.test.js test/osm-oneway.test.js",
"shard:osm": "node scripts/shard-osm-txt.js",
"test:join": "node --test test/dne-geo-join.test.js test/name-keys.test.js test/geo-cluster.test.js test/mun-poly.test.js",
"test:cep": "node --test test/cep-externo.test.js",
"cep:sample": "node scripts/sample-awesomeapi-cep.mjs",
"cep:quality": "node scripts/cep-externo-quality.mjs",
"test:xml": "node --test test/xml-parser.test.js",
"test:bz2": "node --test test/bz2-fixtures.test.js",
"test:large": "node scripts/run-named-tests.js large",
"fixtures": "python scripts/generate-fixtures.py",
"fixtures:large": "python scripts/generate-fixtures.py --large",
"fixtures:only": "python scripts/generate-fixtures.py --only",
"fixtures:pbf": "node scripts/write-tiny-pbf.js"
},
"keywords": [
"openstreetmap",
"osm",
"bzip2",
"pbf",
"xml",
"geocoding",
"streaming",
"parser"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@arijs/seek-bzip": "file:../seek-bzip",
"@arijs/stream-xml-parser": "^0.2.24",
"pbf": "^3.2.1",
"unbzip2-stream": "^1.3.1"
}
}