You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "wif",
  3. "version": "2.0.6",
  4. "description": "Bitcoin Wallet Import Format (WIF) decoding/encoding module",
  5. "author": "Daniel Cousens",
  6. "license": "MIT",
  7. "repository": {
  8. "type": "git",
  9. "url": "https://github.com/bitcoinjs/wif.git"
  10. },
  11. "bugs": {
  12. "url": "https://github.com/bitcoinjs/wif/issues"
  13. },
  14. "homepage": "https://github.com/bitcoinjs/wif",
  15. "keywords": [
  16. "bitcoin",
  17. "base58",
  18. "base58check",
  19. "decode",
  20. "decoding",
  21. "encoding",
  22. "encode",
  23. "key",
  24. "private",
  25. "wif"
  26. ],
  27. "main": "index.js",
  28. "scripts": {
  29. "coverage-report": "nyc report --reporter=lcov",
  30. "coverage": "nyc --check-coverage --branches 90 --functions 90 npm run unit",
  31. "standard": "standard",
  32. "test": "npm run standard && npm run coverage",
  33. "unit": "tape test/*.js"
  34. },
  35. "dependencies": {
  36. "bs58check": "<3.0.0"
  37. },
  38. "devDependencies": {
  39. "nyc": "^6.4.0",
  40. "standard": "*",
  41. "tape": "^4.6.2"
  42. }
  43. }