-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.24 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
{
"name": "geotiff-stats",
"version": "0.1.0",
"description": "Get Statistics from a Large GeoTIFF while Using a Low Amount of Memory",
"main": "index.js",
"unpkg": "bundle.js",
"jsdelivr": "bundle.js",
"files": [
"index.js",
"bundle.js",
"calc-band-stats.js",
"get-gdal-stats.js",
"iter-pixels.js",
"iter-tiles.js"
],
"scripts": {
"build": "npx browserify index.js > bundle.js",
"format": "npx prettier --arrow-parens=avoid --print-width=120 --trailing-comma=none --write *.js",
"setup": "cd test/data && ./setup.sh",
"test": "node test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GeoTIFF/geotiff-stats.git"
},
"keywords": [
"geotiff",
"stats",
"minimum",
"maximum",
"satellite",
"imagery"
],
"author": "Daniel J. Dufour",
"license": "MIT",
"bugs": {
"url": "https://github.com/GeoTIFF/geotiff-stats/issues"
},
"homepage": "https://github.com/GeoTIFF/geotiff-stats#readme",
"devDependencies": {
"find-and-read": "^1.0.2",
"flug": "^2.1.0",
"geotiff": "^1.0.8",
"toab": "^2.2.0"
},
"dependencies": {
"calc-stats": "^0.3.3",
"fast-bin": "^0.3.0",
"flat-iter": "^0.0.2",
"iter-fun": "^0.1.2"
}
}