forked from stac-utils/stac-layer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.21 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
78
79
80
81
82
{
"name": "stac-layer",
"version": "1.0.0-beta.1",
"description": "Visualize a STAC Item or Collection on a Leaflet Map",
"type": "module",
"main": "./src/index.js",
"browser": "./dist/stac-layer.min.js",
"module": "./src/index.js",
"exports": "./src/index.js",
"directories": {
"test": "test"
},
"files": [
"babel.config.json",
"src/",
"dist/stac-layer.min.js",
"dist/stac-layer.min.js.map"
],
"scripts": {
"build": "webpack",
"dev": "concurrently \"webpack --watch\" \"npm run serve\"",
"format": "npx prettier --arrow-parens=avoid --print-width=120 --trailing-comma=none --write src/*.js src/*/*.js",
"test": "node test/tests.js",
"serve": "npx srvd --debug --wait=Infinity",
"setup": "cd data && bash ./setup.sh",
"tiler": "docker run --name titiler -p 8000:8000 --env PORT=8000 --rm -t developmentseed/titiler"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stac-utils/stac-layer.git"
},
"keywords": [
"cog",
"geojson",
"geotiff",
"jpg",
"png",
"shapefile",
"stac"
],
"author": "Daniel J. Dufour",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/stac-utils/stac-layer/issues"
},
"homepage": "https://github.com/stac-utils/stac-layer#readme",
"dependencies": {
"@mapbox/tilebelt": "^1.0.2",
"@turf/boolean-point-in-polygon": "^6.5.0",
"easy-image-loader": "^0.1.0",
"georaster": "^1.5.5",
"georaster-layer-for-leaflet": "^3.10.0",
"geotiff-epsg-code": "^0.3.1",
"leaflet": "^1.8.0",
"reproject-bbox": "^0.12.0",
"stac-js": "0.0.8"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.2",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/preset-env": "^7.18.2",
"babel-loader": "^8.2.2",
"concurrently": "^7.3.0",
"envisage": "^0.1.0",
"eslint-config-prettier": "^8.3.0",
"glob": "^9.1.2",
"http-server": "^14.1.0",
"open": "^8.4.2",
"webpack": "^5.42.0",
"webpack-cli": "^4.9.2"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"engines": {
"node": "^18.0.0"
}
}