-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1014 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
39
40
41
42
43
44
45
46
47
48
{
"name": "bitcore-mnemonic",
"version": "1.5.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.1.2",
"bitcore-build": "git://github.com/bitpay/bitcore-build.git",
"brfs": "^1.2.0",
"chai": "^1.10.0",
"gulp": "^3.8.10",
"mocha": "^2.2.5"
},
"dependencies": {
"bitcore-lib": "^0.15.0",
"unorm": "^1.3.3"
}
}