forked from tatumio/tatum-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.02 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@tatumio/tatum",
"version": "1.30.4",
"description": "Tatum API client allows browsers and Node.js clients to interact with Tatum API.",
"main": "dist/src/index.js",
"repository": "https://github.com/tatumio/tatum-js",
"files": [
"dist/"
],
"scripts": {
"test": "jest",
"clean": "rimraf dist*",
"build": "tsc",
"prepublish": "npm run clean && npm run build",
"docs": "typedoc",
"lint": "eslint ./src --ext .ts --fix"
},
"types": "dist/src/index.d.ts",
"keywords": [
"Tatum",
"Blockchain",
"Building Blocks",
"Bitcoin",
"Litecoin",
"Stellar",
"Tatum API",
"XRP",
"Ethereum"
],
"author": "Tatum, [email protected]",
"license": "MIT",
"dependencies": {
"@binance-chain/javascript-sdk": "^4.1.1",
"@celo-tools/celo-ethers-wrapper": "0.0.5",
"@cityofzion/neon-js": "^4.8.0",
"@elrondnetwork/erdjs": "^7.0.0",
"@emurgo/cardano-serialization-lib-nodejs": "^6.0.0",
"@harmony-js/crypto": "^0.1.56",
"@onflow/config": "^0.0.2",
"@onflow/fcl": "^0.0.73",
"@onflow/sdk": "^0.0.54",
"@onflow/types": "^0.0.4",
"@onflow/util-encode-key": "^0.0.2",
"@solana/spl-token": "^0.1.8",
"@solana/web3.js": "^1.30.2",
"@tatumio/bitcoincashjs2-lib": "4.1.2",
"algosdk": "^1.11.1",
"axios": "^0.21.1",
"axios-retry": "^3.1.9",
"base32.js": "^0.1.0",
"bech32": "^1.1.4",
"bignumber.js": "^9.0.0",
"bip32": "^2.0.5",
"bip39": "^3.0.2",
"bitcoinjs-lib": "^5.2.0",
"bitcore-lib": "8.25.8",
"bitcore-lib-doge": "8.25.7",
"bitcore-lib-ltc": "8.25.8",
"bn.js": "^5.2.0",
"borsh": "^0.6.0",
"cardano-crypto.js": "^6.0.0",
"cashaddrjs": "^0.4.4",
"class-transformer": "^0.2.3",
"class-validator": "0.13.0",
"coininfo": "^5.1.0",
"dedent-js": "^1.0.1",
"ed25519-hd-key": "^1.1.2",
"elliptic": "^6.5.4",
"ethereumjs-wallet": "^1.0.0",
"form-data": "^4.0.0",
"hdkey": "^2.0.1",
"js-sha512": "^0.8.0",
"neon": "^2.0.0",
"reflect-metadata": "^0.1.13",
"ripple-lib": "^1.7.1",
"sha3": "^2.1.4",
"stellar-sdk": "^8.1.0",
"thorify": "^1.5.2",
"tronweb": "^3.2.2",
"url-parse": "^1.5.3",
"web3": "1.4.0",
"web3-eth": "1.4.0"
},
"devDependencies": {
"@types/bip32": "^2.0.0",
"@types/bip39": "^3.0.0",
"@types/jest": "^26.0.4",
"@types/node": "^14.0.14",
"@types/validator": "^13.1.3",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"dotenv": "^8.2.0",
"eslint": "^7.32.0",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2",
"typedoc": "^0.21.5",
"typescript": "^4.3.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"setupFiles": [
"./jest-setup-file.ts"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}