-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 1.67 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
{
"name": "opentrees-harvester",
"version": "0.1.0",
"description": "Data processing pipeline for open tree inventories.",
"main": "./lib/source.js",
"scripts": {
"get": "./cli/get.js",
"process": "./cli/process.js",
"docs": "jsdoc2md ./lib/*.js --no-cache --separators > API.md",
"test": "jest tests/*.js"
},
"author": "Ethan Welty <[email protected]> (https://fallingfruit.org)",
"contributors": [
"Steve Bennett <[email protected]> (https://stevebennett.me)"
],
"license": "CC-BY-NC-4.0",
"engines": {
"node": ">= 12.0.0"
},
"dependencies": {
"@esri/arcgis-rest-feature-service": "^4.0.3",
"@esri/arcgis-rest-form-data": "^4.0.0",
"@esri/arcgis-rest-portal": "^4.0.3",
"@esri/arcgis-rest-request": "^4.0.3",
"@googlemaps/google-maps-services-js": "^3.3.42",
"adm-zip": "^0.5.10",
"axios": "^1.4.0",
"colors": "^1.1.2",
"command-line-args": "^5.1.1",
"command-line-usage": "^6.1.0",
"csv-parser": "^2.3.2",
"decompress": "^4.2.1",
"dotenv": "^16.3.1",
"fuzzyset.js": "^1.0.5",
"gdal-async": "^3.7.0",
"glob": "^7.1.2",
"lodash.isequal": "^4.5.0",
"node-downloader-helper": "^1.0.12",
"node-unrar-js": "2.0.0",
"puppeteer": "^19.8.5",
"table": "^5.4.6",
"xlsx": "^0.18.5",
"xmldom": "^0.6.0",
"xpath": "^0.0.33"
},
"devDependencies": {
"jest": "^28.0.0",
"jsdoc-to-markdown": "^5.0.3",
"prettier": "^3.1.0"
},
"jest": {
"modulePaths": [
"<rootDir>"
]
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"trailingComma": "es5",
"semi": false,
"arrowParens": "avoid"
}
}