-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 906 Bytes
/
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": "alkis-berlin-client",
"description": "Query ALKIS Berlin.",
"version": "2.0.0",
"type": "module",
"main": "index.js",
"files": [
"index.js",
"lib"
],
"keywords": [
"alkis",
"berlin",
"liegenschaftskataster",
"kataster",
"cadastral",
"map",
"wfs"
],
"author": "Jannis R <mail@jannisr.de>",
"homepage": "https://github.com/derhuerst/alkis-berlin-client",
"repository": "derhuerst/alkis-berlin-client",
"bugs": "https://github.com/derhuerst/alkis-berlin-client/issues",
"license": "ISC",
"engines": {
"node": ">=18"
},
"dependencies": {
"parse-gml-polygon": "^0.3.2",
"query-fis-broker-wfs": "^2.0.0",
"transform-coordinates": "^1.0.0"
},
"devDependencies": {
"eslint": "^8.35.0",
"tap-min": "^2.0.0",
"tape": "^5.6.3"
},
"scripts": {
"lint": "eslint .",
"test": "node test.js | tap-min",
"prepublishOnly": "npm run lint && npm test"
}
}