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
39
| {
| "name": "bech32",
| "version": "1.1.4",
| "description": "Bech32 encoding / decoding",
| "keywords": [
| "base32",
| "bech32",
| "bitcoin",
| "crypto",
| "crytography",
| "decode",
| "decoding",
| "encode",
| "encoding"
| ],
| "main": "index.js",
| "types": "index.d.ts",
| "files": [
| "index.js",
| "index.d.ts"
| ],
| "license": "MIT",
| "dependencies": {},
| "devDependencies": {
| "nyc": "^15.0.0",
| "standard": "^14.3.3",
| "tap-dot": "*",
| "tape": "^4.13.2"
| },
| "repository": {
| "url": "http://github.com/bitcoinjs/bech32",
| "type": "git"
| },
| "scripts": {
| "coverage": "nyc --check-coverage --branches 90 --functions 90 tape test/*.js",
| "standard": "standard",
| "test": "tape test/*.js | tap-dot"
| }
| }
|
|