-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.72 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.72 KB
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
{
"name": "@fioprotocol/fiosdk",
"version": "1.10.3",
"description": "The Foundation for Interwallet Operability (FIO) is a consortium of leading blockchain wallets, exchanges and payments providers that seeks to accelerate blockchain adoption by reducing the risk, complexity, and inconvenience of sending and receiving cryptoassets.",
"keywords": [
"fio",
"native",
"client",
"blockchain"
],
"main": "lib/FIOSDK.js",
"directories": {
"lib": "lib",
"test": "tests"
},
"types": "lib/FIOSDK.d.ts",
"scripts": {
"test": "mocha --require ts-node/register -t 80000 tests/testnet.spec.ts",
"localtest": "mocha --require ts-node/register -t 80000 tests/index.spec.ts"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fioprotocol/fiosdk_typescript.git"
},
"devDependencies": {
"@types/big.js": "6.2.1",
"@types/chai": "4.3.19",
"@types/mocha": "10.0.7",
"@types/node": "12.20.55",
"@types/text-encoding": "0.0.35",
"@types/node-fetch": "2.6.11",
"chai": "4.5.0",
"dotenv": "16.4.5",
"mocha": "10.7.3",
"node-fetch": "2.7.0",
"text-encoding": "0.7.0",
"ts-node": "8.10.2",
"tslint": "5.20.1",
"tslint-plugin-prettier": "2.3.0",
"typedoc": "0.26.5",
"typedoc-github-theme": "0.1.2",
"typescript": "5.5.4"
},
"dependencies": {
"@fioprotocol/fiojs": "1.0.2",
"abort-controller": "3.0.0",
"big.js": "6.2.1",
"bip39": "3.1.0",
"hdkey": "1.1.2",
"validate": "5.2.0",
"wif": "2.0.6"
}
}