package.json 959 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "hash-base",
  3. "version": "3.1.0",
  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.4",
  31. "readable-stream": "^3.6.0",
  32. "safe-buffer": "^5.2.0"
  33. },
  34. "devDependencies": {
  35. "nyc": "^15.0.1",
  36. "standard": "^14.3.3",
  37. "tape": "^5.0.0"
  38. },
  39. "engines": {
  40. "node": ">=4"
  41. }
  42. }