-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
49 lines (49 loc) · 1.09 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
{
"name": "bitcoinjs-message",
"version": "2.2.0",
"description": "bitcoinjs-message",
"keywords": [
"bitcoinjs-message",
"bitcoin"
],
"homepage": "https://github.com/bitcoinjs/bitcoinjs-message",
"bugs": {
"url": "https://github.com/bitcoinjs/bitcoinjs-message/issues"
},
"license": "MIT",
"files": [
"index.js",
"index.d.ts"
],
"main": "./index.js",
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/bitcoinjs/bitcoinjs-message.git"
},
"scripts": {
"coverage": "nyc tape test/*.js",
"prepublish": "npm run test",
"standard": "standard",
"test": "npm run standard && npm run unit",
"unit": "tape test/*.js"
},
"dependencies": {
"bech32": "^1.1.3",
"bs58check": "^2.1.2",
"buffer-equals": "^1.0.3",
"create-hash": "^1.1.2",
"secp256k1": "^3.0.1",
"varuint-bitcoin": "^1.0.1"
},
"devDependencies": {
"bigi": "^1.4.1",
"bitcoinjs-lib": "^3.2.0",
"nyc": "^14.1.1",
"standard": "^12.0.1",
"tape": "^4.5.1"
},
"engines": {
"node": ">=0.10"
}
}