-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.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
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
{
"name": "mrf",
"version": "1.0.1",
"description": "Read Meta Raster Format Files (e.g. .mrf, .idx, .data)",
"main": "src/index.js",
"files": [
"src/index.js",
"src/core/parse-idx.js",
"src/core/parse-mrf.js",
"src/utils/cluster.js",
"src/utils/hash.js",
"src/utils/is-buffer.js",
"src/utils/isdef.js",
"src/utils/range.js",
"src/getRange.js",
"src/MRF.js"
],
"dependencies": {
"accept-ranges": "^0.0.1",
"cross-fetch": "^3.0.5",
"fast-bin": "^0.1.0",
"fix-buffer": "^0.0.0",
"geowarp": "^1.0.1",
"lerc": "^3.0.0",
"lodash.groupby": "^4.6.0",
"to-text-string": "^0.0.1",
"typed-array-ranges": "^0.0.0",
"xdim": "^1.2.0",
"xml-utils": "^1.0.2"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-transform-template-literals": "^7.10.5",
"@babel/preset-env": "^7.11.0",
"aws-sdk": "^2.727.1",
"babel-loader": "^8.1.0",
"finalhandler": "^1.1.2",
"find-and-read": "^1.0.0",
"flug": "^2.0.0",
"jpeg-js": "^0.4.1",
"pixelmatch": "^5.2.1",
"pngjs": "^5.0.0",
"readim": "^0.0.2",
"serve-static": "^1.14.1",
"to-image-data": "^0.0.2",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12",
"write-image": "^0.0.4"
},
"scripts": {
"build": "npm run build:prod",
"build:prod": "webpack ---mode=production",
"clean": "rm -f *.jpg *.png *.tgz",
"dev": "webpack ---mode=development",
"fix": "node ./node_modules/eslint/bin/eslint.js src --fix",
"format": "npx prettier --arrow-parens=avoid --print-width=140 --trailing-comma=none --write src tests",
"serve": "cd dist && npx http-server --cors",
"test": "npm run clean && source .env && for f in tests/*test*.js;do AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY node \"$f\";done"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GeoSurge/mrf.git"
},
"keywords": [
"geotiff",
"imagery",
"mrf",
"satellite"
],
"author": "Daniel J. Dufour",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/GeoSurge/mrf/issues"
},
"homepage": "https://github.com/GeoSurge/mrf#readme"
}