-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
58 lines (58 loc) · 1.66 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
{
"name": "@fioprotocol/fiosdk",
"version": "1.9.0",
"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": "index.js",
"directories": {
"lib": "lib",
"test": "tests"
},
"scripts": {
"test": "mocha -t 80000 tests/testnet.spec.js",
"localtest": "mocha -t 80000 tests/index.spec.js"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fioprotocol/fiosdk_typescript.git"
},
"devDependencies": {
"@types/chai": "4.3.16",
"@types/mocha": "5.2.7",
"@types/node": "12.20.55",
"chai": "4.4.1",
"dotenv": "16.4.5",
"jest": "23.6.0",
"jest-fetch-mock": "2.1.2",
"mocha": "6.2.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.25.13",
"typescript": "4.9.5"
},
"dependencies": {
"@fioprotocol/fiojs": "1.0.1",
"@types/text-encoding": "0.0.35",
"abort-controller": "3.0.0",
"bip39": "3.1.0",
"hdkey": "1.1.2",
"validate": "5.2.0",
"wif": "2.0.6"
},
"jest": {
"automock": false,
"setupFiles": [
"./setupJest.js"
]
}
}