Brak opisu

bower.json 974B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name" : "jsSHA",
  3. "version" : "2.2.0",
  4. "description" : "jsSHA is a JavaScript implementation of the complete Secure Hash Standard family (SHA-1, SHA-224, SHA3-224, SHA-256, SHA3-256, SHA-384, SHA3-384, SHA-512, SHA3-512, SHAKE128, and SHAKE256) 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-224",
  13. "SHA3-224",
  14. "SHA-256",
  15. "SHA3-256",
  16. "SHA-384",
  17. "SHA3-384",
  18. "SHA-512",
  19. "SHA3-512",
  20. "SHAKE-128",
  21. "SHAKE-256",
  22. "SHAKE128",
  23. "SHAKE256",
  24. "SHA1",
  25. "SHA224",
  26. "SHA256",
  27. "SHA384",
  28. "SHA512",
  29. "SHA-2",
  30. "SHA2",
  31. "SHA-3",
  32. "SHA3",
  33. "SHAKE",
  34. "HMAC",
  35. "hash"
  36. ],
  37. "license" : "BSD-3-Clause",
  38. "authors" : [
  39. "Brian Turek <brian.turek@gmail.com>"
  40. ],
  41. "homepage" : "http://caligatio.github.com/jsSHA/",
  42. "ignore": [
  43. "build",
  44. "test",
  45. "src/sha_dev.js"
  46. ],
  47. "devDependencies": {
  48. "chai": "^3.5.0",
  49. "mocha": "^2.5.3"
  50. }
  51. }