package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "fastest-levenshtein",
  3. "version": "1.0.16",
  4. "description": "Fastest Levenshtein distance implementation in JS.",
  5. "main": "mod.js",
  6. "types": "mod.d.ts",
  7. "module": "./esm/mod.js",
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/ka-weihe/fastest-levenshtein.git"
  11. },
  12. "keywords": [
  13. "levenshtein",
  14. "distance",
  15. "fast",
  16. "fastest",
  17. "edit",
  18. "string",
  19. "similarity",
  20. "algorithm",
  21. "match",
  22. "comparison",
  23. "fuzzy",
  24. "search",
  25. "string",
  26. "matching",
  27. "similar",
  28. "node",
  29. "difference"
  30. ],
  31. "author": "Kasper U. Weihe",
  32. "license": "MIT",
  33. "bugs": {
  34. "url": "https://github.com/ka-weihe/fastest-levenshtein/issues"
  35. },
  36. "homepage": "https://github.com/ka-weihe/fastest-levenshtein#README",
  37. "scripts": {
  38. "build": "tsc mod.ts --declaration",
  39. "build:esm": "tsc --declaration -p tsconfig.esm.json",
  40. "prepare": "npm run build && npm run build:esm",
  41. "bench": "npm run build && tsc bench.ts && node bench.js",
  42. "test": "npm run build && tsc test.ts && jest test.js",
  43. "test:coverage": "npm run build && jest --coverage",
  44. "test:coveralls": "npm run build && jest --coverage --coverageReporters=text-lcov | coveralls"
  45. },
  46. "devDependencies": {
  47. "@types/benchmark": "^1.0.33",
  48. "@types/jest": "^26.0.15",
  49. "@typescript-eslint/eslint-plugin": "^4.7.0",
  50. "@typescript-eslint/parser": "^4.7.0",
  51. "benchmark": "^2.1.4",
  52. "coveralls": "^3.1.0",
  53. "eslint": "^7.13.0",
  54. "eslint-config-node": "^4.1.0",
  55. "eslint-config-prettier": "^6.15.0",
  56. "eslint-plugin-import": "^2.22.1",
  57. "eslint-plugin-node": "^11.1.0",
  58. "eslint-plugin-prettier": "^3.1.4",
  59. "fast-levenshtein": "^2.0.6",
  60. "jest": "^26.6.3",
  61. "js-levenshtein": "^1.1.6",
  62. "leven": "^3.1.0",
  63. "levenshtein-edit-distance": "^2.0.5",
  64. "natural": "^2.1.5",
  65. "prettier": "^2.1.2",
  66. "talisman": "^1.1.3",
  67. "typescript": "^4.0.5"
  68. },
  69. "engines": {
  70. "node": ">= 4.9.1"
  71. }
  72. }