{
    "name": "@posthog/geoip-plugin",
    "version": "0.0.7",
    "description": "Enrich PostHog events and persons with IP location data",
    "keywords": [
        "posthog",
        "plugin",
        "maxmind",
        "geoip",
        "geolite"
    ],
    "main": "dist/index.js",
    "repository": "github:PostHog/posthog-plugin-geoip",
    "bugs": {
        "url": "https://github.com/PostHog/posthog-plugin-geoip/issues"
    },
    "homepage": "https://github.com/PostHog/posthog-plugin-geoip#readme",
    "author": "PostHog <hey@posthog.com>",
    "scripts": {
        "test": "jest .",
        "lint": "eslint .",
        "lint:fix": "eslint --fix .",
        "format": "prettier --write .",
        "format:check": "prettier --check .",
        "typecheck": "tsc"
    },
    "devDependencies": {
        "@maxmind/geoip2-node": "^2.3.1",
        "@posthog/plugin-scaffold": "github:PostHog/plugin-scaffold",
        "@types/jest": "^26.0.19",
        "@typescript-eslint/eslint-plugin": "^4.12.0",
        "@typescript-eslint/parser": "^4.12.0",
        "eslint": "^7.21.0",
        "eslint-config-prettier": "^8.1.0",
        "eslint-plugin-import": "^2.22.1",
        "eslint-plugin-node": "^11.1.0",
        "eslint-plugin-promise": "^4.3.1",
        "eslint-plugin-simple-import-sort": "^7.0.0",
        "husky": "~4.3.6",
        "jest": "^26.6.3",
        "lint-staged": "~10.5.3",
        "prettier": "^2.2.1",
        "ts-jest": "^26.4.4",
        "typescript": "^4.1.3"
    },
    "husky": {
        "hooks": {
            "pre-commit": "lint-staged && tsc --noEmit"
        }
    },
    "lint-staged": {
        "*.{js,ts}": "eslint --fix",
        "*.{ts,tsx,js,jsx,json,yaml,toml,css,scss,html,xml}": "prettier --write"
    }
}
