{
  "name": "didyoumean2",
  "version": "4.1.0",
  "description": "a library for matching human-quality input to a list of potential matches using the Levenshtein distance algorithm",
  "keywords": [
    "closest",
    "compare",
    "comparison",
    "didyoumean",
    "diff",
    "difference",
    "distance",
    "edit",
    "find",
    "fuzzy",
    "leven",
    "levenshtein",
    "match",
    "matching",
    "similar",
    "similarity",
    "string",
    "suggest",
    "suggestion",
    "text",
    "typescript",
    "word"
  ],
  "homepage": "https://github.com/foray1010/didyoumean2",
  "bugs": "https://github.com/foray1010/didyoumean2/issues",
  "repository": "foray1010/didyoumean2",
  "license": "MIT",
  "author": "foray1010",
  "sideEffects": false,
  "main": "dist/index.cjs.js",
  "unpkg": "dist/index.umd.js",
  "module": "dist/index.esm.js",
  "typings": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "prebuild": "yarn clean:build",
    "build": "tsc --project tsconfig.build.json && rollup -c rollup.config.ts",
    "ci": "npm-run-all -p 'lint:*' 'type:*' && yarn test && yarn build && size-limit",
    "clean:build": "shx rm -rf dist/ build/dts/",
    "eslint": "eslint --ext=cjs,js,mjs,ts,tsx --ignore-path=node_modules/@foray1010/eslint-config/eslintignore",
    "lint": "npm-run-all -p 'lint:*'",
    "lint:js": "yarn eslint .",
    "lint:md": "yarn remark .",
    "prepublishOnly": "yarn ci",
    "prettier": "prettier --ignore-path=node_modules/@foray1010/prettier-config/prettierignore",
    "remark": "remark --frail --ignore-path=node_modules/@foray1010/remark-preset/remarkignore --ignore-path-resolve-from=cwd",
    "test": "jest --config .jestrc.json",
    "type:check": "tsc",
    "type:coverage": "type-coverage --strict --at-least 97 --detail --ignore-catch"
  },
  "dependencies": {
    "@babel/runtime": "^7.10.2",
    "leven": "^3.1.0",
    "lodash.deburr": "^4.1.0"
  },
  "devDependencies": {
    "@babel/core": "7.10.2",
    "@commitlint/cli": "8.3.5",
    "@commitlint/config-conventional": "8.3.4",
    "@foray1010/babel-preset": "5.1.0",
    "@foray1010/eslint-config": "3.0.5",
    "@foray1010/prettier-config": "4.0.1",
    "@foray1010/remark-preset": "3.0.2",
    "@foray1010/tsconfig": "2.0.1",
    "@rollup/plugin-babel": "5.0.3",
    "@rollup/plugin-commonjs": "13.0.0",
    "@rollup/plugin-node-resolve": "8.0.1",
    "@size-limit/preset-small-lib": "4.5.0",
    "@types/jest": "26.0.0",
    "@types/lodash.deburr": "4.1.6",
    "@types/ramda": "0.27.6",
    "eslint": "7.2.0",
    "husky": "4.2.5",
    "ignore-sync": "2.0.1",
    "jest": "26.0.1",
    "lint-staged": "10.2.10",
    "npm-run-all": "4.1.5",
    "prettier": "2.0.5",
    "ramda": "0.27.0",
    "remark-cli": "8.0.0",
    "rollup": "2.17.0",
    "rollup-plugin-dts": "1.4.7",
    "rollup-plugin-terser": "6.1.0",
    "shx": "0.3.2",
    "size-limit": "4.5.0",
    "sort-package-json": "1.44.0",
    "type-coverage": "2.7.2",
    "typescript": "3.9.5"
  },
  "engines": {
    "node": ">=10.13"
  }
}
