forked from bitcoinjs/bs58check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.14 KB
/
package.json
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
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "bs58check",
"version": "2.1.2",
"description": "A straightforward implementation of base58-check encoding",
"keywords": [
"base",
"base58",
"base58check",
"bitcoin",
"bs58",
"check",
"checksum",
"decode",
"decoding",
"encode",
"encoding",
"litecoin"
],
"homepage": "https://github.com/bitcoinjs/bs58check",
"bugs": {
"url": "https://github.com/bitcoinjs/bs58check/issues"
},
"license": "MIT",
"author": "Daniel Cousens",
"files": [
"index.js",
"base.js"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/bitcoinjs/bs58check.git"
},
"scripts": {
"coverage-report": "nyc report --reporter=lcov",
"coverage": "nyc --check-coverage --branches 90 --functions 90 npm run unit",
"standard": "standard",
"test": "npm run standard && npm run coverage",
"unit": "tape test/*.js"
},
"dependencies": {
"bs58": "^4.0.0",
"create-hash": "^1.1.0",
"safe-buffer": "^5.1.2"
},
"devDependencies": {
"blake-hash": "^1.0.0",
"nyc": "^11.3.0",
"standard": "^10.0.3",
"tape": "^4.6.2"
}
}