{
  "name": "stdnum",
  "version": "1.11.13",
  "description": "Standard Number Validation",
  "files": [
    "README.md",
    "LICENSE.txt",
    "lib",
    "src"
  ],
  "main": "./lib/cjs/index.js",
  "module": "./lib/esm/index.js",
  "types": "./lib/cjs/index.d.ts",
  "exports_NOT_YET": {
    "./": {
      "import": "./lib/esm/",
      "require": "./lib/cjs/"
    }
  },
  "overrides": {
    "minimatch": "^9.0.7"
  },
  "release": {
    "branches": [
      "main"
    ],
    "plugins": [
      "@semantic-release/commit-analyzer",
      "@semantic-release/npm",
      [
        "@semantic-release/git",
        {
          "assets": [
            "package.json"
          ],
          "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
        }
      ]
    ]
  },
  "scripts": {
    "format": "prettier --write \"src/**/*.ts\"",
    "lint": "eslint src",
    "test": "jest",
    "build": "tsc",
    "prepublishOnly:esm": "tsc -p tsconfig.json",
    "prepublishOnly:cjs": "tsc -p tsconfig-cjs.json",
    "prepublishOnly": "npm run prepublishOnly:esm && npm run prepublishOnly:cjs"
  },
  "publishConfig": {
    "provenance": true
  },
  "jest": {
    "moduleFileExtensions": [
      "ts",
      "js"
    ],
    "roots": [
      "<rootDir>/src"
    ],
    "transform": {
      "^.+\\.(ts|tsx)$": "ts-jest"
    },
    "testMatch": [
      "**/__tests__/**/*.+(ts|tsx|js)",
      "**/?(*.)+(spec|test).+(ts|tsx|js)"
    ]
  },
  "author": "David Koblas",
  "keywords": [
    "identity",
    "company",
    "person",
    "vat",
    "validation",
    "validator"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/koblas/stdnum-js.git"
  },
  "license": "MIT",
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/git": "^10.0.1",
    "@types/jest": "^30.0.0",
    "eslint": "^10.1.0",
    "eslint-config-prettier": "^10.0.1",
    "jest": "^30.2.0",
    "prettier": "^3.4.2",
    "prettier-eslint": "^16.3.0",
    "semantic-release": "^25.0.1",
    "ts-jest": "^29.1.0",
    "typescript": "^5.7.3",
    "typescript-eslint": "^8.57.1"
  }
}
