package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. "__npminstall_done": "Thu Dec 24 2020 20:20:59 GMT+0800 (CST)",
  43. "_from": "hash-base@3.1.0",
  44. "_resolved": "https://registry.npm.taobao.org/hash-base/download/hash-base-3.1.0.tgz"
  45. }