{
  "name": "geo2zip",
  "version": "4.0.2",
  "description": "Translates latitude / longitude geolocations to the nearest corresponding U.S. zip code",
  "main": "dist/index.js",
  "repository": {
    "url": "https://github.com/blakek/geo2zip",
    "type": "git"
  },
  "author": "Blake Knight <oss.ideas@gmail.com> (https://blakek.me/)",
  "contributors": [
    "Blake Knight <oss.ideas@gmail.com> (https://blakek.me/)"
  ],
  "engines": {
    "node": ">=8.6.0"
  },
  "keywords": [
    "geolocation",
    "latitude",
    "longitude",
    "lat",
    "lon",
    "long",
    "location",
    "zip",
    "zipcode",
    "knn",
    "k-d",
    "kd",
    "tree",
    "k-nn",
    "nearest",
    "neighbors"
  ],
  "license": "MIT",
  "ava": {
    "extensions": [
      "js",
      "ts"
    ],
    "files": [
      "src/**/*.test.ts"
    ],
    "ignoredByWatcher": [
      "!src/**"
    ],
    "require": [
      "ts-node/register"
    ]
  },
  "scripts": {
    "build": "tsc",
    "format": "amper-scripts format-write .",
    "format-check": "amper-scripts format-check .",
    "lint": "amper-scripts lint .",
    "prepack": "run-s build",
    "test": "ava",
    "typecheck": "tsc --noEmit",
    "validate": "run-s -l typecheck test format-check lint",
    "watch": "ava --watch"
  },
  "devDependencies": {
    "@types/node": "^18.11.2",
    "amper-scripts": "^1.2.4",
    "ava": "^4.3.3",
    "npm-run-all": "^4.1.5",
    "ts-node": "^10.9.1",
    "typescript": "^4.8.4"
  },
  "dependencies": {
    "sphere-knn": "^1.4.0",
    "standardize-geolocation": "^4.0.1",
    "us-zips": "^2022.9"
  }
}
