-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
82 lines (82 loc) · 2.18 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "waas",
"version": "0.0.1",
"description": "Bitcoin Cash Wallet as a Service",
"author": "Gabriel Cardona <[email protected]>",
"contributors": [],
"scripts": {
"build": "tsc",
"example": "tsc"
},
"license": "MIT",
"engines": {
"node": ">=10.15.3"
},
"main": "index.js",
"files": [
"index.ts",
"lib/"
],
"homepage": "https://developer.bitcoin.com",
"repository": {
"type": "git",
"url": "git+https://github.com/Bitcoin-com/WaaS.git"
},
"dependencies": {
"@types/bigi": "^1.4.2",
"@types/bip39": "^2.4.2",
"@types/node": "^10.11.7",
"@types/randombytes": "^2.0.0",
"@types/wif": "^2.0.1",
"assert": "^1.4.1",
"axios": "0.19.0",
"bc-bip68": "^1.0.5",
"bch-wallet-bridge.js": "github:web3bch/bch-wallet-bridge.js#master",
"bigi": "^1.4.2",
"bip-schnorr": "^0.3.0",
"bip21": "Bitcoin-com/bip21",
"bip32-utils": "Bitcoin-com/bip32-utils#0.13.1",
"bip38": "^2.0.2",
"bip39": "^2.5.0",
"bip66": "^1.1.5",
"bitbox-sdk": "^8.4.2",
"bitcoincash-ops": "Bitcoin-com/bitcoincash-ops#2.0.0",
"bitcoincashjs-lib": "Bitcoin-com/bitcoincashjs-lib#v4.0.1",
"bitcoinjs-message": "^2.0.0",
"browserify": "^16.2.2",
"bs58": "^4.0.1",
"buffer": "^5.1.0",
"cashaddrjs": "^0.2.9",
"coininfo": "Bitcoin-com/coininfo",
"qrcode": "^1.2.0",
"randombytes": "^2.0.6",
"repl.history": "^0.1.4",
"safe-buffer": "^5.1.2",
"satoshi-bitcoin": "^1.0.4",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1",
"wif": "^2.0.6"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/sinon": "^7.0.11",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"eslint": "^5.5.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-node": "7.0.1",
"eslint-plugin-prettier": "^2.6.2",
"mocha": "^5.0.1",
"nock": "^10.0.6",
"node-mocks-http": "^1.7.0",
"nyc": "^14.1.1",
"prettier": "^1.14.2",
"semantic-release": "^15.13.3",
"sinon": "^4.5.0",
"source-map-support": "^0.5.12",
"ts-node": "^8.3.0",
"typescript": "^3.4.5"
}
}