-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 909 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
{
"name": "crypto-lib",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.26.0",
"bech32": "^2.0.0",
"bip38": "^3.0.0",
"bitcoinjs-lib": "^5.1.6",
"blakejs": "^1.1.0",
"bs58": "^4.0.1",
"bs58check": "^2.1.2",
"cashaddrjs": "https://github.com/balletcrypto/cashaddrjs",
"coininfo": "^5.1.0",
"conflux-address-js": "^1.0.4",
"keccak": "^3.0.1",
"ripple-address-codec": "^4.1.3",
"scryptsy": "^2.1.0",
"secp256k1": "^4.0.2",
"secure-random": "^1.1.2",
"wif": "^2.0.6"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.6.2",
"chai": "^4.2.0",
"mocha": "^6.2.0"
},
"scripts": {
"test": "./node_modules/.bin/mocha --timeout 100000 --require @babel/register test/*"
}
}