bower.json 697 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name" : "jsSHA",
  3. "version" : "1.5.0",
  4. "description" : "jsSHA is a JavaScript implementation of the entire family of SHA hashes as defined in FIPS 180-2 (SHA-1, SHA-224, SHA-256, SHA-384, and SHA-512) as well as HMAC",
  5. "main" : "src/sha.js",
  6. "repository" : {
  7. "type" : "git",
  8. "url" : "https://github.com/Caligatio/jsSHA.git"
  9. },
  10. "keywords" : [
  11. "SHA-1",
  12. "SHA-256",
  13. "SHA-224",
  14. "SHA-384",
  15. "SHA-512",
  16. "SHA1",
  17. "SHA256",
  18. "SHA224",
  19. "SHA384",
  20. "SHA512",
  21. "SHA2",
  22. "HMAC",
  23. "hash"
  24. ],
  25. "license" : "BSD",
  26. "authors" : [
  27. "Brian Turek <brian.turek@gmail.com>"
  28. ],
  29. "homepage" : "http://caligatio.github.com/jsSHA/",
  30. "ignore": [
  31. "build",
  32. "test",
  33. "src/sha_dev.js"
  34. ]
  35. }