Brak opisu

package.json 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. "author": "Brian Turek <brian.turek@gmail.com>",
  39. "bugs": {
  40. "url": "https://github.com/Caligatio/jsSHA/issues"
  41. },
  42. "engines": {
  43. "node": "*"
  44. },
  45. "homepage": "https://github.com/Caligatio/jsSHA",
  46. "dependencies": {},
  47. "devDependencies": {
  48. "chai": "^3.5.0",
  49. "mocha": "^2.5.3"
  50. },
  51. "scripts": {
  52. "test": "mocha --reporter spec"
  53. }
  54. }