forked from perliedman/ocad2geojson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 921 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
{
"name": "ocad2geojson",
"version": "1.1.0",
"description": "Convert OCAD files to GeoJSON",
"main": "src/index.js",
"scripts": {
"test": "ava"
},
"keywords": [
"ocad",
"geojson",
"gis",
"orienteering"
],
"author": "Per Liedman <[email protected]>",
"license": "AGPL-3.0-or-later",
"repository": "https://github.com/perliedman/ocad2geojson",
"homepage": "https://github.com/perliedman/ocad2geojson",
"devDependencies": {
"ava": "^0.25.0",
"eslint": "^5.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0"
},
"dependencies": {
"@turf/bbox": "^6.0.1",
"@turf/meta": "^6.0.2",
"geojson-vt": "^3.2.0",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"reproject": "^1.2.3",
"vt-pbf": "^3.1.1"
}
}