package.json 752 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "hmac-drbg",
  3. "version": "1.0.1",
  4. "description": "Deterministic random bit generator (hmac)",
  5. "main": "lib/hmac-drbg.js",
  6. "scripts": {
  7. "test": "mocha --reporter=spec test/*-test.js"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git+ssh://git@github.com/indutny/hmac-drbg.git"
  12. },
  13. "keywords": [
  14. "hmac",
  15. "drbg",
  16. "prng"
  17. ],
  18. "author": "Fedor Indutny <fedor@indutny.com>",
  19. "license": "MIT",
  20. "bugs": {
  21. "url": "https://github.com/indutny/hmac-drbg/issues"
  22. },
  23. "homepage": "https://github.com/indutny/hmac-drbg#readme",
  24. "devDependencies": {
  25. "mocha": "^3.2.0"
  26. },
  27. "dependencies": {
  28. "hash.js": "^1.0.3",
  29. "minimalistic-assert": "^1.0.0",
  30. "minimalistic-crypto-utils": "^1.0.1"
  31. }
  32. }