-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.56 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
{
"name": "metrixjs-wallet",
"version": "0.3.2",
"description": "A toolkit for building metrix light wallets",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"start-services": "./scripts/start-services.sh",
"build": "tsc",
"webpack-build": "webpack --config webpack.config.js",
"clean": "docker-compose stop && docker-compose rm -f && rm -rf ./data && rm -rf lib",
"test": "tsc && mocha lib/**/*.test.js",
"test-watch": "tsc -w & mocha -w lib/**/*.test.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/TheLindaProjectInc/metrixjs-wallet"
},
"devDependencies": {
"@types/big.js": "^6.1.1",
"@types/chai": "^4.2.16",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.41",
"@types/node-fetch": "^2.6.2",
"chai": "^4.3.4",
"mocha": "^8.3.2",
"tslint": "^6.1.3",
"typescript": "^4.2.4",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@bitcoinerlab/secp256k1": "^1.1.1",
"@types/bip38": "^2.0.1",
"@types/secp256k1": "^4.0.2",
"big.js": "^6.1.1",
"bignumber.js": "^9.0.1",
"bip174": "^2.0.1",
"bip32": "^4.0.0",
"bip38": "^3.1.1",
"bip39": "^3.0.3",
"bitcoinjs-lib": "^5.2.0",
"bs58check": "^2.1.2",
"buffer": "^6.0.3",
"coinselect": "^3.1.11",
"ecpair": "^2.1.0",
"elliptic": "^6.5.4",
"fetch-absolute": "^1.0.0",
"hash.js": "^1.1.7",
"node-fetch": "2",
"scryptsy": "^2.1.0",
"secp256k1": "^4.0.2",
"tiny-secp256k1": "^2.2.3"
}
}