forked from blakek/us-zips
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 841 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
{
"name": "us-zips",
"version": "2024.02.15",
"description": "A list of US ZIP codes and their geolocations",
"main": "index.js",
"repository": {
"url": "https://github.com/blakek/us-zips.git",
"type": "git"
},
"author": "Blake Knight <oss.ideas@gmail.com> (https://blakek.me/)",
"contributors": [
"Blake Knight <oss.ideas@gmail.com> (https://blakek.me/)"
],
"engines": {
"node": ">=6"
},
"keywords": [
"zip",
"zipcode",
"postal",
"code"
],
"license": "MIT",
"scripts": {
"format": "npx prettier -w .",
"import-zips": "import() { node scripts/import-zips.js \"$1\" && yarn make:array && yarn make:key-value; }; import",
"make:array": "node scripts/make-array.js",
"make:key-value": "node scripts/make-key-value.js",
"test": "ava"
},
"dependencies": {},
"devDependencies": {
"ava": "^4.3.1"
}
}