-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
90 lines (90 loc) · 2.71 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "openskidata-processor",
"version": "1.0.0",
"description": "Data pipeline for processing OpenStreetMap and Skimap.org data into OpenSkiData and OpenSkiMap tiles",
"main": "run.sh",
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"prettierPath": null
},
"prettier": {},
"dependencies": {
"@turf/along": "^7",
"@turf/bbox-polygon": "^7",
"@turf/boolean-contains": "^7",
"@turf/boolean-point-in-polygon": "^7",
"@turf/buffer": "^7",
"@turf/centroid": "^7",
"@turf/helpers": "^7",
"@turf/length": "^7",
"@turf/line-chunk": "^7",
"@turf/nearest-point": "^7",
"@turf/nearest-point-on-line": "^7",
"@turf/point-to-line-distance": "^7",
"@turf/union": "^7",
"arangojs": "^9",
"async-mutex": "^0.5.0",
"cacache": "^17",
"dataloader": "^2",
"exponential-backoff": "^3.1.1",
"fetch-retry": "^6.0.0",
"iso3166-2-db": "^2",
"lodash": "^4",
"lru_map": "^0.4.1",
"martinez-polygon-clipping": "^0.7.0",
"merge2": "^1",
"ngeohash": "^0.6.3",
"object-hash": "^3",
"openskidata-format": "^0.15.0",
"osmtogeojson": "3.0.0-beta.5",
"parallel-transform": "^1",
"stream-to-promise": "^3",
"tmp": "^0.2.0",
"topojson-client": "^3",
"topojson-server": "^3",
"uuid": "^10"
},
"devDependencies": {
"@babel/cli": "^7",
"@babel/core": "^7",
"@babel/plugin-proposal-class-properties": "^7",
"@babel/plugin-proposal-object-rest-spread": "^7",
"@babel/preset-env": "^7",
"@babel/preset-typescript": "^7",
"@types/cacache": "^17",
"@types/dockerode": "^3",
"@types/geojson": "^7946",
"@types/jest": "^29",
"@types/lodash": "^4",
"@types/merge2": "^1",
"@types/ngeohash": "^0.6.2",
"@types/node": "^22",
"@types/object-hash": "^3",
"@types/parallel-transform": "^1",
"@types/stream-to-promise": "^2",
"@types/tmp": "^0.2.0",
"@types/topojson-client": "^3",
"@types/topojson-server": "^3",
"@types/uuid": "^10",
"babel-jest": "^29",
"jest": "^29",
"nock": "^14.0.0-beta.16",
"prettier": "^3",
"regenerator-runtime": "^0.14",
"testcontainers": "^10",
"typescript": "^5"
},
"scripts": {
"build": "babel src --out-dir dist --copy-files --extensions '.ts,.js'",
"test": "jest",
"record-tests": "jest -u",
"check-types": "tsc",
"download": "npm run build && node --optimize_for_size --max_old_space_size=${MAX_OLD_SPACE_SIZE:-4096} dist/scripts/download.js",
"prepare-geojson": "npm run build && node --optimize_for_size --max_old_space_size=${MAX_OLD_SPACE_SIZE:-4096} dist/scripts/prepare_geojson.js"
},
"author": "Russell Porter",
"license": "ISC"
}