{
    "name": "@maxmind/geoip2-node",
    "version": "5.0.0",
    "description": "Node.js API for GeoIP2 webservice client and database reader",
    "main": "dist/src/index.js",
    "homepage": "https://github.com/maxmind/GeoIP2-node",
    "repository": {
        "type": "git",
        "url": "https://github.com/maxmind/GeoIP2-node.git"
    },
    "author": "MaxMind",
    "license": "Apache-2.0",
    "private": false,
    "keywords": [
        "geoip",
        "geoip2",
        "geoip precision",
        "geoip2 precision",
        "geolite",
        "geolite2",
        "maxmind",
        "maxminddb",
        "mmdb"
    ],
    "files": ["dist"],
    "types": "dist/src/index.d.ts",
    "devDependencies": {
        "@types/ip6addr": "^0.2.3",
        "@types/jest": "^29.2.0",
        "@types/lodash.set": "^4.3.4",
        "@types/node": "^20.0.0",
        "@typescript-eslint/eslint-plugin": "^6.0.0",
        "@typescript-eslint/parser": "^6.0.0",
        "eslint": "^8.4.1",
        "eslint-config-prettier": "^9.0.0",
        "eslint-plugin-prefer-arrow": "^1.2.3",
        "gh-pages": "^6.0.0",
        "husky": "^8.0.1",
        "jest": "^29.5.0",
        "lint-staged": "^15.0.1",
        "lodash": "^4.17.11",
        "nock": "^13.0.2",
        "prettier": "^3.0.0",
        "ts-jest": "^29.1.0",
        "typedoc": "^0.25.0",
        "typescript": "^5.0.2"
    },
    "lint-staged": {
        "*.json": ["prettier --parser json --write"],
        "*.ts": [
            "prettier --parser typescript --single-quote true --trailing-comma es5 --write",
            "eslint -c .eslintrc.js --ext ts,js . --fix --max-warnings=0"
        ]
    },
    "publishConfig": {
        "access": "public"
    },
    "scripts": {
        "build": "rimraf dist && tsc",
        "build:docs": "rimraf docs && typedoc src/index.ts --out docs --exclude \"**/*.spec.ts\" --readme README.md && ./bin/sanitize-doc-refs.sh",
        "deploy:docs": "gh-pages -d docs",
        "lint": "eslint -c .eslintrc.js --ext ts,js . --max-warnings=0",
        "prettier:ts": "prettier --parser typescript --single-quote true --trailing-comma es5 --write 'src/**/*.ts'",
        "prettier:ci": "prettier --parser typescript --single-quote true --trailing-comma es5 --list-different 'src/**/*.ts'",
        "prettier:json": "prettier --parser json --write '**/*.json'",
        "setup": "husky install",
        "test": "jest",
        "test:watch": "jest --watch",
        "prepublishOnly": "npm run build && npm run test && npm run lint && npm run build:docs && npm run deploy:docs"
    },
    "dependencies": {
        "ip6addr": "^0.2.5",
        "maxmind": "^4.2.0"
    }
}
