-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 838 Bytes
/
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
{
"version": "2.5.3",
"name": "digibyte-js",
"main": "index.js",
"description": "A pure and powerful JavaScript DigiByte library.",
"author": {
"name": "Renzo Diaz",
"email": "renzo.diaz@remadi.net"
},
"dependencies": {
"bech32": "=2.0.0",
"bip-schnorr": "=0.6.4",
"bn.js": "=4.11.8",
"bs58": "^4.0.1",
"buffer-compare": "=1.1.1",
"elliptic": "^6.5.3",
"ieee754": "^1.2.1",
"inherits": "=2.0.1",
"lodash": "^4.17.20",
"unorm": "^1.6.0"
},
"keywords": [
"blockchain",
"digibyte",
"digiid",
"digiassets",
"blockbook"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/RenzoDD/digibyte-js"
},
"scripts": {
"test": "node test.js",
"build": "browserify -r ./index.js:digibyte-js -o ./digibyte.js"
}
}