bcrypt.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "bcrypt",
  3. "description": "A bcrypt library for NodeJS.",
  4. "keywords": [
  5. "bcrypt",
  6. "password",
  7. "auth",
  8. "authentication",
  9. "encryption",
  10. "crypt",
  11. "crypto"
  12. ],
  13. "main": "./bcrypt",
  14. "version": "0.7.5",
  15. "author": "Nick Campbell (http://github.com/ncb000gt)",
  16. "engines": {
  17. "node": ">= 0.6.0"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "http://github.com/ncb000gt/node.bcrypt.js.git"
  22. },
  23. "licenses": [
  24. {
  25. "type": "MIT"
  26. }
  27. ],
  28. "bugs": {
  29. "url": "http://github.com/ncb000gt/node.bcrypt.js/issues"
  30. },
  31. "scripts": {
  32. "test": "node-gyp configure build && nodeunit test"
  33. },
  34. "dependencies": {
  35. "bindings": "1.0.0"
  36. },
  37. "devDependencies": {
  38. "nodeunit": ">=0.6.4"
  39. },
  40. "contributors": [
  41. "Antonio Salazar Cardozo <savedfastcool@gmail.com> (https://github.com/Shadowfiend)",
  42. "Van Nguyen <the.gol.effect@gmail.com> (https://github.com/thegoleffect)",
  43. "David Trejo <david@dtrejo.com> (https://github.com/dtrejo)",
  44. "Ben Glow <glen.low@pixelglow.com> (https://github.com/pixelglow)",
  45. "NewITFarmer.com <> (https://github.com/newitfarmer)",
  46. "Alfred Westerveld <alfredwesterveld@gmail.com> (https://github.com/alfredwesterveld)",
  47. "Vincent Côté-Roy <vincentcr@gmail.com> (https://github.com/vincentcr)",
  48. "Lloyd Hilaiel <lloyd@hilaiel.com> (https://github.com/lloyd)",
  49. "Roman Shtylman <shtylman@gmail.com> (https://github.com/shtylman)",
  50. "Vadim Graboys <dimva13@gmail.com> (https://github.com/vadimg)",
  51. "Ben Noorduis <> (https://github.com/bnoordhuis)",
  52. "Nate Rajlich <nathan@tootallnate.net> (https://github.com/tootallnate)",
  53. "Sean McArthur <sean.monstar@gmail.com> (https://github.com/seanmonstar)",
  54. "Fanie Oosthuysen <fanie.oosthuysen@gmail.com> (https://github.com/weareu)"
  55. ]
  56. }