package.json 541 B

1234567891011121314151617181920212223
  1. {
  2. "name": "fuzzysearch",
  3. "description": "Tiny and blazing-fast fuzzy search in JavaScript",
  4. "version": "1.0.3",
  5. "homepage": "https://github.com/bevacqua/fuzzysearch",
  6. "author": {
  7. "name": "Nicolas Bevacqua",
  8. "email": "ng@bevacqua.io",
  9. "url": "http://bevacqua.io"
  10. },
  11. "license": "MIT",
  12. "repository": {
  13. "type": "git",
  14. "url": "git://github.com/bevacqua/fuzzysearch.git"
  15. },
  16. "scripts": {
  17. "test": "jshint . && tape test/*.js"
  18. },
  19. "devDependencies": {
  20. "jshint": "^2.6.0",
  21. "tape": "^3.5.0"
  22. }
  23. }