forked from fioprotocol/fiosdk_typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.55 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
{
"name": "@fioprotocol/fiosdk",
"version": "1.2.1",
"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"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fioprotocol/fiosdk_typescript.git"
},
"devDependencies": {
"@types/chai": "^4.2.4",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.2",
"chai": "^4.2.0",
"jest": "^23.6.0",
"jest-fetch-mock": "^2.1.2",
"mocha": "^6.2.2",
"node-fetch": "^2.6.0",
"text-encoding": "^0.7.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"tslint-plugin-prettier": "^2.0.1",
"typedoc": "^0.15.0",
"typescript": "^3.6.4"
},
"dependencies": {
"@types/text-encoding": "0.0.35",
"bip39": "^3.0.2",
"@fioprotocol/fiojs": "1.0.1",
"hdkey": "^1.1.1",
"validate": "^5.1.0",
"wif": "^2.0.6"
},
"jest": {
"automock": false,
"setupFiles": [
"./setupJest.js"
]
}
}