-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.88 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
{
"name": "geotiff-read-bbox",
"version": "2.5.0",
"description": "Read Pixel Values from a GeoTIFF within a Bounding Box in almost any Projection",
"type": "module",
"main": "index.cjs",
"exports": {
"import": "./index.mjs",
"require": "./index.cjs"
},
"files": [
"index.mjs",
"index.cjs"
],
"scripts": {
"build": "npx babel --plugins @babel/plugin-transform-modules-commonjs --plugins @babel/plugin-transform-export-namespace-from index.mjs --out-file index.cjs && echo '\nmodule.exports = exports.default; module.exports.default = exports.default;' >> index.cjs",
"format": "npx prettier --arrow-parens=avoid --print-width=200 --trailing-comma=none --write *js",
"prepublish": "npm run format && npm run build && npm test",
"setup": "cd data && ./setup.sh",
"test": "TIME=true node test.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GeoTIFF/geotiff-read-bbox.git"
},
"keywords": [
"bbox",
"boundingbox",
"clip",
"geotiff",
"imagery",
"project",
"proj4",
"satellite",
"raster",
"read"
],
"author": "Daniel J. Dufour",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/GeoTIFF/geotiff-read-bbox/issues"
},
"homepage": "https://github.com/GeoTIFF/geotiff-read-bbox#readme",
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"@babel/plugin-transform-export-namespace-from": "^7.23.4",
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"flug": "^2.7.2",
"geotiff": "^2.1.3",
"geotiff-precise-bbox": "^0.2.0",
"srvd": "^0.6.0",
"write-image": "^0.2.0"
},
"dependencies": {
"bbox-fns": "^0.20.2",
"geoaffine": "^0.2.0",
"geotiff-epsg-code": "^0.3.1",
"geotiff-geotransform": "^0.0.1",
"proj4-collect": "^0.0.2",
"proj4-fully-loaded": "^0.2.0",
"proj4-merge": "^0.1.1"
}
}