package.json 931 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "fast-levenshtein",
  3. "version": "1.1.4",
  4. "description": "Efficient implementation of Levenshtein algorithm with asynchronous callback support",
  5. "main": "levenshtein.js",
  6. "files": [
  7. "levenshtein.js"
  8. ],
  9. "scripts": {
  10. "build": "grunt build",
  11. "benchmark": "grunt benchmark",
  12. "test": "mocha"
  13. },
  14. "devDependencies": {
  15. "chai": "~1.5.0",
  16. "grunt": "~0.4.1",
  17. "grunt-benchmark": "~0.2.0",
  18. "grunt-contrib-jshint": "~0.4.3",
  19. "grunt-contrib-uglify": "~0.2.0",
  20. "grunt-mocha-test": "~0.2.2",
  21. "grunt-npm-install": "~0.1.0",
  22. "load-grunt-tasks": "~0.6.0",
  23. "lodash": "^4.0.1",
  24. "mocha": "~1.9.0"
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "https://github.com/hiddentao/fast-levenshtein.git"
  29. },
  30. "keywords": [
  31. "levenshtein",
  32. "distance",
  33. "string"
  34. ],
  35. "author": "Ramesh Nair <ram@hiddentao.com> (http://www.hiddentao.com/)",
  36. "license": "MIT"
  37. }