{
  "name": "shoetest",
  "version": "2.0.2",
  "description": "Powerful string matching insensitive to diacritics, special characters, symbols and case",
  "type": "commonjs",
  "sideEffects": false,
  "main": "dist/index.js",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./package.json": "./package.json"
  },
  "scripts": {
    "build": "npm run clean && tsc",
    "dev": "tsc --watch",
    "clean": "rimraf dist coverage",
    "prepare": "npm run build",
    "prepublishOnly": "npm run validate",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage --verbose",
    "lint": "eslint src test --ext .ts",
    "lint:fix": "eslint src test --ext .ts --fix",
    "typecheck": "tsc --noEmit",
    "validate": "npm run typecheck && npm run lint && npm run test"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/adurrive/shoetest"
  },
  "keywords": [
    "typescript",
    "match",
    "matching",
    "search",
    "find",
    "filter",
    "test",
    "text",
    "string",
    "regex",
    "replace",
    "simplify",
    "complexify",
    "remove",
    "diacritic",
    "diacritics",
    "accent",
    "accents",
    "special",
    "characters",
    "punctuation",
    "symbols",
    "insensitive",
    "generator",
    "fuzzy",
    "unicode"
  ],
  "author": {
    "name": "Alexandre Durrive",
    "email": "ad@moseic.com"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/adurrive/shoetest/issues"
  },
  "homepage": "https://github.com/adurrive/shoetest",
  "dependencies": {
    "randexp": "^0.5.3"
  },
  "devDependencies": {
    "@types/jest": "^29.5.14",
    "@types/node": "^22.5.5",
    "@typescript-eslint/eslint-plugin": "^8.8.1",
    "@typescript-eslint/parser": "^8.8.1",
    "eslint": "^9.12.0",
    "eslint-config-prettier": "^10.1.5",
    "eslint-plugin-prettier": "^5.5.1",
    "jest": "^29.7.0",
    "prettier": "^3.3.3",
    "rimraf": "^6.0.1",
    "ts-jest": "^29.2.5",
    "typescript": "^5.6.3"
  },
  "engines": {
    "node": ">=14.0.0"
  },
  "files": [
    "dist/**/*",
    "src/**/*",
    "reference.json",
    "README.md",
    "LICENSE"
  ]
}
