-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 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
{
"name": "agol-cache",
"version": "1.4.0",
"description": "A simple script to download all layers from an ArcGIS Online Feature Service to GeoJSON.",
"homepage": "https://github.com/reyemtm/agol-cache/blob/master/README.md",
"main": "lib/featureServiceToGeoJSON.js",
"scripts": {
"test1": "node lib/getGdalFormats.js && jest",
"test": "jest"
},
"bin": "./bin/agol-cache-cli.js",
"keywords": [
"gis",
"arcgis",
"agol",
"geojson",
"arcgis online",
"agol to geojson",
"feature service to geojson",
"feature service",
"download",
"export"
],
"author": "Malcolm Meyer",
"license": "MIT",
"dependencies": {
"dotenv": "^8.2.0",
"fetch-retry": "^4.0.1",
"gdal3.js": "^2.4.0",
"node-fetch": "^2.6.1",
"ora": "^4.0.3",
"winston": "^3.3.3"
},
"nodemonConfig": {
"ignore": [
"*.log"
]
},
"jest": {
"testEnvironment": "node",
"testTimeout": 120000
},
"devDependencies": {
"jest": "^29.7.0"
}
}