-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 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
{
"name": "berlin-postal-code-areas",
"description": "The shapes of all ZIP code areas in Berlin as GeoJSON.",
"version": "1.0.0",
"main": "index.js",
"files": [
"index.js",
"list.json",
"s"
],
"keywords": [
"berlin",
"postal codes",
"zip",
"areas",
"shapes",
"geojson"
],
"author": "Jannis R <[email protected]>",
"homepage": "https://github.com/derhuerst/berlin-postal-code-areas",
"repository": "derhuerst/berlin-postal-code-areas",
"bugs": "https://github.com/derhuerst/berlin-postal-code-areas/issues",
"license": "ISC",
"engines": {
"node": ">=12"
},
"dependencies": {
},
"devDependencies": {
"@turf/simplify": "^5.1.5",
"geojson-is-valid": "0.0.5",
"parse-gml-polygon": "^0.3.0",
"query-fis-broker-wfs": "^1.0.0",
"queue": "^6.0.0",
"tap-min": "^2.0.0",
"tape": "^5.0.0",
"transform-coordinates": "^0.1.0"
},
"scripts": {
"build": "rm s/*.json list.json; env NODE_ENV=dev node build/index.js",
"test": "env NODE_ENV=dev node test.js | tap-min",
"prepublishOnly": "npm run build && npm test"
}
}