package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "sifter",
  3. "keywords": [
  4. "search",
  5. "filter",
  6. "sift",
  7. "data",
  8. "results",
  9. "match",
  10. "sort",
  11. "autocomplete"
  12. ],
  13. "description": "A library for textually searching arrays and hashes of objects by property (or multiple properties). Designed specifically for autocomplete.",
  14. "version": "0.4.1",
  15. "author": "Brian Reavis <brian@thirdroute.com>",
  16. "main": "./sifter.js",
  17. "repository": {
  18. "type": "git",
  19. "url": "git://github.com/brianreavis/sifter.js.git"
  20. },
  21. "scripts": {
  22. "test": "mocha -R list"
  23. },
  24. "bin": {
  25. "sifter": "./bin/sifter.js"
  26. },
  27. "dependencies": {
  28. "optimist": "0.6.x",
  29. "cardinal": "0.4.x",
  30. "async": "0.2.x",
  31. "humanize": "0.0.x",
  32. "microtime": "~1.2.0",
  33. "node-csv": "https://github.com/voodootikigod/node-csv/tarball/master"
  34. },
  35. "devDependencies": {
  36. "mocha": "1.12.x",
  37. "mocha-istanbul": "0.2.x",
  38. "mocha-lcov-reporter": "0.0.x",
  39. "coveralls": "2.3.x",
  40. "uglify-js": "2.4.x",
  41. "istanbul": "0.1.x"
  42. },
  43. "engines": {
  44. "node": "*"
  45. }
  46. }