forked from bigearth/bitbox-cli
-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
88 lines (88 loc) · 2.81 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
83
84
85
86
87
88
{
"name": "bitbox-sdk",
"version": "8.11.0",
"description": "BITBOX SDK for Bitcoin Cash",
"author": "Gabriel Cardona <[email protected]>",
"contributors": [
"Chris Troutner <[email protected]>"
],
"scripts": {
"test": "npm run test:unit",
"test:no-build": "nyc mocha test/unit --timeout 60000 --exit",
"test:unit": "tsc && nyc mocha test/unit --timeout 60000 --exit",
"test:integration": "TEST=integration nyc --reporter=text mocha --timeout 30000 test/integration --exit",
"test:integration:local": "TEST=integration SERVER=local nyc --reporter=text mocha --timeout 30000 test/integration --exit",
"test:integration:stage": "TEST=integration SERVER=stage nyc --reporter=text mocha --timeout 30000 test/integration --exit",
"test:integration:custom": "TEST=integration SERVER=custom mocha --timeout 30000 test/integration --exit",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "tsc"
},
"license": "MIT",
"engines": {
"node": ">=10.15.3"
},
"main": "index.js",
"files": [
"index.ts",
"lib/"
],
"homepage": "https://developer.bitcoin.com/bitbox",
"repository": {
"type": "git",
"url": "git+https://github.com/Bitcoin-com/bitbox-sdk.git"
},
"dependencies": {
"@bitcoin-dot-com/bitcoincashjs2-lib": "^4.1.0",
"@types/bigi": "^1.4.2",
"@types/bip39": "^2.4.2",
"@types/randombytes": "^2.0.0",
"@types/socket.io": "^2.1.2",
"@types/socket.io-client": "^1.4.32",
"@types/wif": "^2.0.1",
"assert": "^1.4.1",
"axios": "0.19.0",
"bc-bip68": "^1.0.5",
"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",
"bitcoincash-ops": "Bitcoin-com/bitcoincash-ops#2.0.0",
"bitcoinjs-message": "^2.0.0",
"bs58": "^4.0.1",
"cashaddrjs": "^0.2.9",
"coininfo": "Bitcoin-com/coininfo",
"eventsource": "^1.0.7",
"randombytes": "^2.0.6",
"safe-buffer": "^5.1.2",
"satoshi-bitcoin": "^1.0.4",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"wif": "^2.0.6"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^10.11.7",
"@types/sinon": "^7.0.11",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"eslint": "^5.16.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.31",
"sinon": "^4.5.0",
"source-map-support": "^0.5.12",
"ts-node": "^8.1.0",
"typescript": "^3.4.5"
}
}