{
  "name": "curp",
  "version": "1.4.0",
  "description": "Genera y valida el CURP (Clave Única de Registro de Población) mexicano.",
  "homepage": "",
  "author": {
    "name": "Israel Perales",
    "email": "israel-perales@outlook.com",
    "url": "https://www.israel-perales.com"
  },
  "files": [
    "lib"
  ],
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "require": "./lib/index.js",
      "default": "./lib/index.js"
    }
  },
  "keywords": [
    "curp",
    "México",
    "mexicano"
  ],
  "devDependencies": {
    "eslint": "^8.57.1",
    "eslint-config-prettier": "^9.1.2",
    "eslint-config-xo": "^0.43.1",
    "eslint-plugin-prettier": "^5.5.6",
    "husky": "^8.0.3",
    "jest": "^29.7.0",
    "lint-staged": "^15.5.2",
    "prettier": "^3.8.3"
  },
  "engines": {
    "npm": ">= 8.0.0"
  },
  "lint-staged": {
    "*.js": [
      "eslint --fix",
      "git add"
    ],
    "*.json": [
      "prettier --write",
      "git add"
    ]
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "eslintConfig": {
    "extends": [
      "xo",
      "prettier"
    ],
    "env": {
      "jest": true,
      "node": true
    },
    "rules": {
      "prettier/prettier": [
        "error",
        {
          "singleQuote": true
        }
      ]
    },
    "plugins": [
      "prettier"
    ]
  },
  "scripts": {
    "pretest": "eslint . --fix",
    "test": "jest",
    "coverage": "jest --coverage"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ripper2hl/curp.git"
  },
  "jest": {
    "testEnvironment": "node"
  },
  "license": "GPL-3.0"
}