Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

package.json 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "bs58check",
  3. "version": "2.1.2",
  4. "description": "A straightforward implementation of base58-check encoding",
  5. "keywords": [
  6. "base",
  7. "base58",
  8. "base58check",
  9. "bitcoin",
  10. "bs58",
  11. "check",
  12. "checksum",
  13. "decode",
  14. "decoding",
  15. "encode",
  16. "encoding",
  17. "litecoin"
  18. ],
  19. "homepage": "https://github.com/bitcoinjs/bs58check",
  20. "bugs": {
  21. "url": "https://github.com/bitcoinjs/bs58check/issues"
  22. },
  23. "license": "MIT",
  24. "author": "Daniel Cousens",
  25. "files": [
  26. "index.js",
  27. "base.js"
  28. ],
  29. "main": "index.js",
  30. "repository": {
  31. "type": "git",
  32. "url": "https://github.com/bitcoinjs/bs58check.git"
  33. },
  34. "scripts": {
  35. "coverage-report": "nyc report --reporter=lcov",
  36. "coverage": "nyc --check-coverage --branches 90 --functions 90 npm run unit",
  37. "standard": "standard",
  38. "test": "npm run standard && npm run coverage",
  39. "unit": "tape test/*.js"
  40. },
  41. "dependencies": {
  42. "bs58": "^4.0.0",
  43. "create-hash": "^1.1.0",
  44. "safe-buffer": "^5.1.2"
  45. },
  46. "devDependencies": {
  47. "blake-hash": "^1.0.0",
  48. "nyc": "^11.3.0",
  49. "standard": "^10.0.3",
  50. "tape": "^4.6.2"
  51. }
  52. }