forked from BitGo/key-recovery-service-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.34 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
{
"name": "key-recovery-service-v2",
"version": "2.0.0",
"description": "Reference implementation of the Key Recovery Service protocol for dispensing public keys",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/_mocha --timeout 20000 --recursive test/",
"start": "node -r dotenv/config bin/server.js"
},
"license": "MIT",
"devDependencies": {
"chai": "2.2.0",
"mocha": "^5.2.0",
"should": "^13.2.1",
"supertest": "^3.3.0"
},
"dependencies": {
"@bitgo/account-lib": "^0.1.4",
"@bitgo/statics": "^2.4.0",
"argparse": "^1.0.10",
"bignumber.js": "^7.2.1",
"bitcoinjs-message": "^2.0.0",
"bitgo": "^8.5.0",
"bitgo-utxo-lib": "^1.6.0",
"body-parser": "^1.18.3",
"dotenv": "^6.1.0",
"eosjs": "^16.0.9",
"eosjs-ecc": "^4.0.4",
"ethereumjs-tx": "^1.3.7",
"express": "^4.16.3",
"jsrender": "^0.9.90",
"lodash": "^4.17.11",
"mongoose": "^5.2.17",
"morgan": "^1.9.1",
"nodemailer": "^4.6.7",
"nodemailer-smtp-transport": "^2.7.4",
"prompt-sync": "^4.1.6",
"prova-lib": "^0.2.9",
"q": "^1.5.1",
"ripple-binary-codec": "^0.1.13",
"ripple-hashes": "^0.3.1",
"ripple-keypairs": "^0.10.1",
"ripple-lib": "^1.0.0-beta.5",
"stellar-base": "^0.8.3",
"stellar-hd-wallet": "0.0.8",
"superagent": "^3.8.3"
}
}