-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
43 lines (43 loc) · 1.18 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": "esri-dump",
"type": "module",
"version": "5.4.0",
"author": "Ian Dees <[email protected]>",
"description": "Assist with pulling data out of an ESRI ArcGIS REST server into a more useful format.",
"scripts": {
"test": "ts-node-test test/",
"build": "tsc --build",
"lint": "eslint *.ts test/*.ts lib/*.ts"
},
"repository": {
"type": "git",
"url": "git://github.com/openaddresses/esri-dump.git"
},
"bin": {
"esri-dump": "./dist/cli.js"
},
"main": "dist/index.js",
"types": "index.ts",
"license": "MIT",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/geojson": "^7946.0.10",
"@types/minimist": "^1.2.2",
"@types/tape": "^5.0.0",
"eslint": "^8.36.0",
"geojsonhint": "^2.0.0",
"tape": "^5.0.0",
"ts-node": "^10.9.1",
"ts-node-test": "^0.4.1",
"typescript": "^5.0.4",
"typescript-eslint": "^7.7.0"
},
"dependencies": {
"@openaddresses/batch-error": "^2.2.0",
"@types/express": "^4.17.17",
"@types/json-schema": "^7.0.12",
"minimist": "^1.2.8"
}
}