package.json 968 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "js-levenshtein",
  3. "version": "1.1.6",
  4. "description": "The most efficient JS implementation calculating the Levenshtein distance, i.e. the difference between two strings.",
  5. "license": "MIT",
  6. "repository": "gustf/js-levenshtein",
  7. "author": {
  8. "name": "Gustaf Andersson",
  9. "email": "gustaf@me.com"
  10. },
  11. "engines": {
  12. "node": ">=0.10.0"
  13. },
  14. "scripts": {
  15. "test": "ava",
  16. "bench": "matcha bench.js"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "levenshtein",
  23. "distance",
  24. "algorithm",
  25. "algo",
  26. "string",
  27. "difference",
  28. "diff",
  29. "fast",
  30. "fuzzy",
  31. "similar",
  32. "similarity",
  33. "compare",
  34. "comparison",
  35. "edit",
  36. "text",
  37. "match",
  38. "matching"
  39. ],
  40. "devDependencies": {
  41. "ava": "^0.25.0",
  42. "fast-levenshtein": "^2.0.6",
  43. "levenshtein-edit-distance": "^2.0.3",
  44. "matcha": "^0.7.0",
  45. "talisman": "^0.21.0",
  46. "leven": "^2.1.0",
  47. "xo": "^0.23.0"
  48. }
  49. }