-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.26 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
53
54
55
56
57
58
{
"name": "bsv-mnemonic",
"version": "1.7.6",
"description": "BIP39 Mnemonics implemented for bsv (Bitcoin SV).",
"author": "Ryan X. Charles <[email protected]>",
"main": "index.js",
"scripts": {
"lint": "standard",
"test": "standard && mocha",
"build": "webpack index.js --output-library bsv -o bsv-mnemonic.min.js"
},
"contributors": [
{
"name": "Yemel Jardi",
"email": "[email protected]"
},
{
"name": "Matias Alejo Garcia",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/moneybutton/bsv-mnemonic.git"
},
"keywords": [
"bitcoin",
"bitcore",
"mnemonic",
"crypto",
"cryptography",
"encryption"
],
"license": "MIT",
"devDependencies": {
"assert": "^1.1.2",
"bitcore-build": "https://github.com/bitpay/bitcore-build.git#d4e8b2b2f1e2c065c3a807dcb6a6250f61d67ab3",
"brfs": "^1.2.0",
"chai": "^1.10.0",
"gulp": "^3.8.10",
"mocha": "^2.2.5"
},
"dependencies": {
"bsv": "0.22.0",
"standard": "11.0.1",
"unorm": "^1.3.3",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1"
},
"standard": {
"globals": [
"afterEach",
"beforeEach",
"describe",
"it"
]
}
}