package.json 768 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "bech32",
  3. "version": "1.1.4",
  4. "description": "Bech32 encoding / decoding",
  5. "keywords": [
  6. "base32",
  7. "bech32",
  8. "bitcoin",
  9. "crypto",
  10. "crytography",
  11. "decode",
  12. "decoding",
  13. "encode",
  14. "encoding"
  15. ],
  16. "main": "index.js",
  17. "types": "index.d.ts",
  18. "files": [
  19. "index.js",
  20. "index.d.ts"
  21. ],
  22. "license": "MIT",
  23. "dependencies": {},
  24. "devDependencies": {
  25. "nyc": "^15.0.0",
  26. "standard": "^14.3.3",
  27. "tap-dot": "*",
  28. "tape": "^4.13.2"
  29. },
  30. "repository": {
  31. "url": "http://github.com/bitcoinjs/bech32",
  32. "type": "git"
  33. },
  34. "scripts": {
  35. "coverage": "nyc --check-coverage --branches 90 --functions 90 tape test/*.js",
  36. "standard": "standard",
  37. "test": "tape test/*.js | tap-dot"
  38. }
  39. }