-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.16 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.16 KB
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
{
"name": "bitcore-mnemonic",
"version": "1.7.0",
"description": "BIP39 Mnemonics implemented for Bitcore.",
"author": "BitPay <[email protected]>",
"main": "index.js",
"scripts": {
"lint": "gulp lint",
"test": "gulp test",
"coverage": "gulp coverage",
"build": "gulp"
},
"contributors": [
{
"name": "Yemel Jardi",
"email": "[email protected]"
},
{
"name": "Matias Alejo Garcia",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/bitpay/bitcore-mnemonic.git"
},
"keywords": [
"bitcoin",
"bitcore",
"mnemonic",
"crypto",
"cryptography",
"encryption"
],
"license": "MIT",
"devDependencies": {
"assert": "^1.4.1",
"bitcore-build": "https://github.com/bitpay/bitcore-build.git#1023e8a99cd42b9241ccafe8e34c52f308c10284",
"brfs": "^2.0.1",
"mocha": "^5.2.0"
},
"dependencies": {
"bitcore-lib": "^0.16.0",
"bitcore-lib-cash": "^0.19.0",
"ghost-bitcore-lib": "git+https://github.com/ghost-coin/ghost-bitcore-lib.git",
"unorm": "^1.4.1"
},
"peerDependencies": {
"bitcore-lib": "^0.16.0"
}
}