-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.71 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
{
"name": "geotiff-geokeys-to-proj4",
"version": "2024.04.13",
"description": "A library that converts GeoTIFFs geokeys to Proj4 string",
"main": "main-dist.js",
"module": "main-dist.mjs",
"types": "types.d.ts",
"exports": {
".": {
"require": "./main-dist.js",
"import": "./main-dist.mjs",
"module": "./main-dist.mjs",
"types": "./types.d.ts"
}
},
"scripts": {
"test": "node test.js",
"update-existing": "node EPSG/update.js",
"build:iife": "esbuild ./main.js --bundle --outfile=\"\" --format=iife --global-name=geokeysToProj4 --minify=false --log-level=error | npx google-closure-compiler --js_output_file=main-dist-iife.js --language_out ECMASCRIPT3",
"build:cjs": "esbuild ./main.js --bundle --outfile=\"\" --format=cjs --minify=false --log-level=error | npx google-closure-compiler --js_output_file=main-dist.js --language_out ECMASCRIPT3 --isolation_mode=IIFE",
"build:mjs": "node ./build-mjs.js",
"build": "npm run build:iife & npm run build:cjs & npm run build:mjs",
"update-all": "node updateAll.js",
"docs": "jsdoc ./ -c jsdoc.conf.json"
},
"keywords": [
"geotiff",
"geokeys",
"geo-keys",
"proj",
"proj4",
"proj4js",
"geotiff-keys",
"geotiff-geokeys",
"geotiff-geo-keys"
],
"author": "matafokka",
"license": "BSD-3-Clause",
"homepage": "https://github.com/matafokka/geotiff-geokeys-to-proj4",
"repository": "https://github.com/matafokka/geotiff-geokeys-to-proj4",
"devDependencies": {
"@otris/jsdoc-tsd": "2.0.4",
"core-js": "3.36.1",
"esbuild": "0.20.2",
"google-closure-compiler": "20240317.0.0",
"ink-docstrap": "1.3.2",
"jsdoc": "3.6.6",
"nanoid": "5.0.7",
"pg": "8.6.0"
}
}