-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.27 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
{
"name": "naip",
"version": "0.0.2",
"description": "Utility Functions for Working with Imagery from the National Agriculture Imagery Program (NAIP)",
"main": "./index.js",
"files": [
"index.js",
"cog-data.js",
"get-cog-list.js",
"get-cog-index.js",
"find-cogs.js"
],
"dependencies": {
"pako": "^1.0.11",
"toab": "^2.1.0"
},
"devDependencies": {
"ava": "^3.12.1",
"concurrently": "^5.3.0",
"live-server": "^1.2.1",
"prettier": "^2.1.2",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0"
},
"scripts": {
"build": "node build.js",
"format": "prettier --arrow-parens avoid --print-width=160 --tab-width 4 --trailing-comma=none --write *.js",
"setup": "node setup.js",
"test": "ava --verbose",
"test:html": "concurrently \"webpack ./index.js -o temp -w\" \"live-server --host=0.0.0.0 --cors --watch=./\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/GeoSurge/naip.git"
},
"keywords": [
"ag",
"agriculture",
"aws",
"cog",
"geotiff",
"imagery",
"lerc",
"naip"
],
"author": "Daniel J. Dufour",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/GeoSurge/naip/issues"
},
"homepage": "https://github.com/GeoSurge/naip#readme"
}