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