-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.41 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
{
"name": "georaster-stack",
"version": "0.5.0",
"description": "Read Stack of GeoSpatial Raster Data",
"main": "./web/index.js",
"files": [
"core/index.js",
"web/index.js",
"dist/georaster-stack.min.js",
"dist/georaster-stack.min.js.map"
],
"unpkg": "./dist/georaster-stack.min.js",
"scripts": {
"build": "npx esbuild ./web/index.js --bundle --outfile=./dist/georaster-stack.min.js --sourcemap",
"build+watch": "npx esbuild ./web/index.js --bundle --outfile=./dist/georaster-stack.js --watch",
"clean": "npx rimraf dist",
"dev": "npx concurrently \"npm run build+watch\" \"npm run serve\"",
"format": "npx prettier --arrow-parens=avoid --print-width=200 --trailing-comma=none --write core/*.js web/*.js *.html",
"serve": "npx srvd --debug --wait=inf",
"setup": "cd test-data && ./setup.sh",
"test": "echo 'no automated tests'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GeoTIFF/georaster-stack.git"
},
"author": "Daniel J. Dufour",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/GeoTIFF/georaster-stack/issues"
},
"homepage": "https://github.com/GeoTIFF/georaster-stack#readme",
"dependencies": {
"georaster": "^1.6.0",
"geotiff-tile": "^0.20.0",
"geotiff-tile-web-worker": "^0.11.0",
"proj4-fully-loaded": "^0.2.0"
},
"devDependencies": {
"concurrently": "^8.2.2",
"rimraf": "^5.0.5"
}
}