-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.31 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
{
"name": "geo-file-type",
"version": "0.0.3",
"description": "Detect the Types of Geospatial Input, including ASCII Grid, Auxiliary XML, GeoTIFF, JPG, PNG, SHP (Shapefile), and World File",
"main": "geo-file-type.js",
"files": [
"constants.js",
"geo-file-type.js"
],
"scripts": {
"format": "npx prettier --arrow-parens=avoid --trailing-comma=none --write *.js",
"setup": "cd data && ./setup.sh",
"test": "npx ava --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DanielJDufour/geo-file-type.git"
},
"keywords": [
"ascii",
"aux",
"auxiliary",
"file",
"geo",
"geotiff",
"grid",
"jpg",
"netcdf",
"png",
"shapefile",
"shp",
"type",
"world",
"file",
"wld",
"xml"
],
"author": "Daniel J. Dufour",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/DanielJDufour/geo-file-type/issues"
},
"homepage": "https://github.com/DanielJDufour/geo-file-type#readme",
"dependencies": {
"ascii-grid": "^0.1.2",
"aux-xml": "0.0.0",
"id-jpg": "0.0.1",
"id-png": "0.0.0",
"id-tif": "0.0.1",
"is-cog": "0.0.1",
"is-geotiff": "0.0.1",
"is-prj": "0.0.3",
"is-shp": "0.0.1",
"is-wld": "^1.0.0"
},
"devDependencies": {
"cross-fetch": "^3.0.6"
}
}