-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 970 Bytes
/
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
{
"name": "geotiff-palette",
"version": "0.1.0",
"description": "Get the Palette (aka Color Map) for a GeoTIFF",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.d.ts",
"index.js"
],
"scripts": {
"test": "npm run test:js && npm run test:ts",
"test:js": "node -r require-esm-deasync ./test/test.js",
"test:ts": "npx ts-node -r require-esm-deasync ./test/test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GeoTIFF/geotiff-palette.git"
},
"keywords": [
"geotiff",
"palette",
"color",
"colortable",
"colormap",
"rgb"
],
"author": "Daniel J. Dufour",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/GeoTIFF/geotiff-palette/issues"
},
"homepage": "https://github.com/GeoTIFF/geotiff-palette#readme",
"devDependencies": {
"deasync": "^0.1.28",
"flug": "^2.3.1",
"geotiff": "^2.0.5",
"require-esm-deasync": "^0.1.0"
}
}