package.json 731 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "binary-search-bounds",
  3. "version": "2.0.5",
  4. "description": "Better binary searching",
  5. "main": "search-bounds.js",
  6. "typings": "search-bounds.d.ts",
  7. "directories": {
  8. "test": "test"
  9. },
  10. "dependencies": {},
  11. "devDependencies": {
  12. "guarded-array": "^1.0.0",
  13. "tape": "^4.0.0"
  14. },
  15. "scripts": {
  16. "test": "tape test/*.js"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git://github.com/mikolalysenko/binary-search-bounds.git"
  21. },
  22. "keywords": [
  23. "binary",
  24. "search",
  25. "bounds",
  26. "least",
  27. "lower",
  28. "greatest",
  29. "upper"
  30. ],
  31. "author": "Mikola Lysenko",
  32. "license": "MIT",
  33. "bugs": {
  34. "url": "https://github.com/mikolalysenko/binary-search-bounds/issues"
  35. }
  36. }