583c840b689281ea1ab91b57c4c30297bb3f329d6ce7b3477d7a552f6a2747fe7c43a3e794cb655bcb707db8388a31f66021a25200d9f7a500b3a91a8f4376 857 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "hash-base",
  3. "version": "2.0.2",
  4. "description": "abstract base class for hash-streams",
  5. "keywords": [
  6. "hash",
  7. "stream"
  8. ],
  9. "homepage": "https://github.com/crypto-browserify/hash-base",
  10. "bugs": {
  11. "url": "https://github.com/crypto-browserify/hash-base/issues"
  12. },
  13. "license": "MIT",
  14. "author": "Kirill Fomichev <fanatid@ya.ru> (https://github.com/fanatid)",
  15. "files": [
  16. "index.js"
  17. ],
  18. "main": "index.js",
  19. "repository": {
  20. "type": "git",
  21. "url": "https://github.com/crypto-browserify/hash-base.git"
  22. },
  23. "scripts": {
  24. "coverage": "nyc node test/*.js",
  25. "lint": "standard",
  26. "test": "npm run lint && npm run unit",
  27. "unit": "node test/*.js"
  28. },
  29. "dependencies": {
  30. "inherits": "^2.0.1"
  31. },
  32. "devDependencies": {
  33. "nyc": "^6.1.1",
  34. "standard": "^6.0.8",
  35. "tape": "^4.2.0"
  36. }
  37. }