-
Notifications
You must be signed in to change notification settings - Fork 113
/
package.json
53 lines (53 loc) · 1.22 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
{
"name": "osmtogeojson",
"version": "3.0.0-beta.5",
"description": "convert OSM to geojson",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"pretest": "npm ls --depth=Infinity > /dev/null",
"test": "npm run test-lib && npm run test-cli",
"test-lib": "mocha -R spec",
"test-cli": "node test-cli/cli.test.js | faucet"
},
"bin": {
"osmtogeojson": "osmtogeojson"
},
"repository": {
"type": "git",
"url": "https://github.com/tyrasd/osmtogeojson.git"
},
"keywords": [
"openstreetmap",
"geojson"
],
"author": "Martin Raifer",
"license": "MIT",
"bugs": {
"url": "https://github.com/tyrasd/osmtogeojson/issues"
},
"dependencies": {
"@mapbox/geojson-rewind": "0.5.2",
"@xmldom/xmldom": "0.8.3",
"concat-stream": "2.0.0",
"geojson-numeric": "0.2.1",
"htmlparser2": "3.5.1",
"JSONStream": "0.8.0",
"optimist": "~0.3.5",
"osm-polygon-features": "^0.9.1",
"tiny-osmpbf": "^0.1.0"
},
"optionalDependencies": {
"@types/geojson": "^7946.0"
},
"devDependencies": {
"expect.js": "~0.2.0",
"faucet": "~0.0.1",
"istanbul": "^0.4.5",
"mocha": "~10.1.0",
"tape": "~5.6.1"
},
"engines": {
"node": ">=0.5"
}
}