-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.33 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
{
"name": "geowarp",
"version": "1.26.2",
"description": "Super Low-Level Raster Reprojection and Resampling Library",
"main": "./geowarp.js",
"types": "geowarp.d.ts",
"files": [
"geowarp.js",
"geowarp.d.ts"
],
"scripts": {
"clean": "rm -fr ./test-data/*.png && rm -fr ./test-output/*.png",
"format": "npm run lint -- --fix && prettier --arrow-parens=avoid --print-width=160 --trailing-comma=none --write *.js *.ts",
"lint": "eslint *.js",
"perf": "TEST_NAME=*perf* LOG_SKIP=false TEST_TIMED=true node test.js",
"prepublish": "npm run lint",
"setup": "cd ./test-data && ./setup.sh",
"test": "npm run clean && npm run test:js && npm run test:ts",
"test:js": "LOG_SKIP=false TEST_TIMED=true node test.js",
"test:ts": "LOG_SKIP=false TEST_TIMED=true npx ts-node ./test.ts",
"test:tsc": "npx tsc --moduleResolution node --noEmit --noImplicitAny --skipLibCheck --target es2020 ./test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DanielJDufour/geowarp.git"
},
"keywords": [
"geo",
"gis",
"image",
"map",
"maps",
"proj",
"proj4",
"projection",
"reprojection",
"resample",
"sample",
"warp"
],
"author": "Daniel J. Dufour",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/DanielJDufour/geowarp/issues"
},
"homepage": "https://github.com/DanielJDufour/geowarp#readme",
"devDependencies": {
"@mapbox/tilebelt": "^1.0.2",
"@types/node": "^20.11.0",
"eslint": "^8.56.0",
"fast-counter": "^0.1.0",
"find-and-read": "^1.2.0",
"flug": "^2.7.2",
"geotiff": "1.0.9",
"geotiff-palette": "^0.1.0",
"geotiff-precise-bbox": "^0.2.0",
"geotiff-read-bbox": "^2.2.0",
"pngjs": "^7.0.0",
"prettier": "^3.2.2",
"proj4-fully-loaded": "^0.2.0",
"typescript": "^5.3.3",
"write-image": "^0.2.0"
},
"dependencies": {
"bbox-fns": "^0.20.2",
"calc-image-stats": "^0.9.0",
"dufour-peyton-intersection": "^0.2.0",
"fast-max": "^0.5.1",
"fast-min": "^0.4.0",
"geoaffine": "^0.2.0",
"get-depth": "^0.0.3",
"mediana": "^2.0.0",
"proj-turbo": "^0.0.1",
"quick-resolve": "^0.0.1",
"reproject-bbox": "^0.13.1",
"reproject-geojson": "^0.5.0",
"segflip": "^0.0.2",
"typed-array-ranges": "^0.0.0",
"xdim": "^1.10.1"
}
}