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.

package.json 667B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "bs58",
  3. "version": "4.0.1",
  4. "description": "Base 58 encoding / decoding",
  5. "keywords": [
  6. "base58",
  7. "bitcoin",
  8. "crypto",
  9. "crytography",
  10. "decode",
  11. "decoding",
  12. "encode",
  13. "encoding",
  14. "litecoin"
  15. ],
  16. "license": "MIT",
  17. "devDependencies": {
  18. "standard": "*",
  19. "tape": "^4.6.3"
  20. },
  21. "repository": {
  22. "url": "https://github.com/cryptocoinjs/bs58",
  23. "type": "git"
  24. },
  25. "files": [
  26. "./index.js"
  27. ],
  28. "main": "./index.js",
  29. "scripts": {
  30. "standard": "standard",
  31. "test": "npm run standard && npm run unit",
  32. "unit": "tape test/index.js"
  33. },
  34. "dependencies": {
  35. "base-x": "^3.0.2"
  36. }
  37. }