-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 939 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 939 Bytes
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
{
"name": "german-postal-codes",
"description": "A list of all postal (ZIP) codes in Germany.",
"version": "2.0.0",
"main": "index.json",
"files": ["index.json", "exceptions.js"],
"keywords": ["germany", "postal code", "zip code", "plz", "postleitzahl"],
"author": "Jannis R <mail@jannisr.de>",
"homepage": "https://github.com/derhuerst/german-postal-codes",
"repository": "derhuerst/german-postal-codes",
"bugs": "https://github.com/derhuerst/german-postal-codes/issues",
"license": "ISC",
"engines": {
"node": ">=16"
},
"devDependencies": {
"deutsche-post": "^1.0.0",
"eslint": "^8.4.0",
"lodash.uniq": "^4.5.0",
"queue": "^6.0.0",
"tap-min": "^2.0.0",
"tape": "^5.0.0"
},
"scripts": {
"lint": "eslint .",
"build": "node build.js > index.json",
"test": "node test.js | tap-min",
"prepublishOnly": "npm run lint && npm run build && npm test"
}
}