-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.38 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
{
"name": "ocad2geojson",
"version": "2.1.12",
"description": "Convert OCAD files to GeoJSON",
"main": "src/index.js",
"scripts": {
"test": "tsc && npm run lint && ava",
"lint": "eslint src/",
"prepublishOnly": "npm test"
},
"bin": {
"ocad-tool": "src/ocad-tool.js"
},
"keywords": [
"ocad",
"geojson",
"gis",
"orienteering"
],
"typings": "types",
"author": "Per Liedman <per@liedman.net>",
"license": "AGPL-3.0-or-later",
"repository": "https://github.com/perliedman/ocad2geojson",
"homepage": "https://github.com/perliedman/ocad2geojson",
"devDependencies": {
"@babel/core": "^7.18.2",
"@types/node": "^20.10.6",
"ava": "^4.2.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"typescript": "^5.5.4"
},
"dependencies": {
"@turf/line-offset": "^6.5.0",
"@turf/meta": "^6.5.0",
"@types/geojson": "^7946.0.13",
"arr-flatten": "^1.1.0",
"bezier-js": "^2.4.0",
"commander": "^6.2.1",
"geojson-vt": "^3.2.0",
"minimist": "^1.2.6",
"mkdirp": "^1.0.4",
"reproject": "^1.2.3",
"uuid": "^3.4.0",
"vt-pbf": "^3.1.1",
"xmldom": "^0.6.0"
}
}