forked from bitpay/bitcore-mnemonic
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
50 lines (50 loc) · 1.04 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
{
"name": "@dashevo/dashcore-mnemonic",
"version": "1.6.1",
"description": "BIP39 Mnemonics for Dashcore",
"author": "Dash Core Group, Inc. <dev@dash.org>",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "nyc mocha",
"build": "webpack"
},
"contributors": [
{
"name": "Yemel Jardi",
"email": "angel.jardi@gmail.com"
},
{
"name": "Matias Alejo Garcia",
"email": "ematiu@gmail.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/dashevo/dashcore-mnemonic.git"
},
"keywords": [
"dash",
"bitcore",
"mnemonic",
"crypto",
"cryptography",
"encryption",
"dashcore"
],
"license": "MIT",
"devDependencies": {
"assert": "^1.4.1",
"chai": "^4.2.0",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"@dashevo/dashcore-lib": "^0.16.7"
}
}