{
  "name": "curp",
  "version": "1.3.1",
  "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",
  "keywords": [
    "curp",
    "México",
    "mexicano"
  ],
  "devDependencies": {
    "coveralls": "^3.1.1",
    "eslint": "^8.54.0",
    "prettier": "^3.1.0",
    "husky": "^8.0.3",
    "lint-staged": "^15.1.0",
    "eslint-config-prettier": "^9.0.0",
    "eslint-plugin-prettier": "^5.0.1",
    "eslint-config-xo": "^0.43.1",
    "jest": "^29.7.0"
  },
  "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": "ripper2hl/curp",
  "jest": {
    "testEnvironment": "node"
  },
  "license": "GPL-3.0"
}
