package.json 716 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "ripemd160",
  3. "version": "2.0.2",
  4. "description": "Compute ripemd160 of bytes or strings.",
  5. "keywords": [
  6. "string",
  7. "strings",
  8. "ripemd160",
  9. "ripe160",
  10. "bitcoin",
  11. "bytes",
  12. "cryptography"
  13. ],
  14. "license": "MIT",
  15. "files": [
  16. "index.js"
  17. ],
  18. "main": "./index",
  19. "repository": {
  20. "url": "https://github.com/crypto-browserify/ripemd160",
  21. "type": "git"
  22. },
  23. "scripts": {
  24. "lint": "standard",
  25. "test": "npm run lint && npm run unit",
  26. "unit": "node test/*.js"
  27. },
  28. "dependencies": {
  29. "hash-base": "^3.0.0",
  30. "inherits": "^2.0.1"
  31. },
  32. "devDependencies": {
  33. "hash-test-vectors": "^1.3.2",
  34. "standard": "^6.0.7",
  35. "tape": "^4.5.1"
  36. }
  37. }