-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.54 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
{
"name": "esri-query",
"version": "1.3.0",
"exports": "./dist/index.js",
"type": "module",
"license": "MIT",
"keywords": [
"geopackage",
"esri",
"featureservice",
"mapservice",
"rest",
"geojson",
"geojsonsync"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jimmyrocks/esri-query.git"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"docs": "npx typedoc --plugin typedoc-plugin-markdown --out docs src/index.ts",
"start": "npm run build && node --expose-gc ./dist/index.js",
"help": "node ./dist/index.js --help",
"test": "jest",
"test-full": "npm run build && node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"dependencies": {
"@terraformer/arcgis": "^2.1.2",
"@types/geojson": "^7946.0.14",
"better-sqlite3": "11.3.0",
"command-line-args": "^6.0.0",
"command-line-usage": "^7.0.3",
"long": "^5.2.3",
"node-fetch": "^3.3.2",
"protobufjs": "^7.4.0",
"wkx": "^0.5.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/arcgis-rest-api": "^10.4.8",
"@types/better-sqlite3": "^7.6.11",
"@types/command-line-args": "^5.2.3",
"@types/command-line-usage": "^5.0.4",
"@types/jest": "^29.5.13",
"@types/sqlite3": "^3.1.11",
"@types/terraformer__arcgis": "^2.0.5",
"jest": "^29.7.0",
"jest-ts-webcompat-resolver": "^1.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typedoc": "^0.26.8",
"typedoc-plugin-markdown": "^4.2.9"
}
}