-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.67 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
{
"name": "ledgerjs-hw-app-fio",
"version": "0.0.1",
"files": [
"lib",
"src"
],
"types": "./dist/fio.d.ts",
"description": "Ledger Hardware Wallet FIO API",
"main": "index.js",
"directories": {
"lib": "lib"
},
"keywords": [
"Ledger",
"LedgerWallet",
"FIO",
"SL",
"NanoS",
"Hardware",
"Wallet"
],
"author": "VacuumLabs",
"license": "Apache-2.0",
"dependencies": {
"@ledgerhq/hw-transport": "^5.12.0",
"@types/ledgerhq__hw-transport": "^4.21.3"
},
"devDependencies": {
"@fioprotocol/fiojs": "^1.0.1",
"@ledgerhq/hw-transport-node-hid": "^5.12.0",
"@types/chai": "^4.2.15",
"@types/chai-as-promised": "^7.1.3",
"@types/ledgerhq__hw-transport-node-hid": "^4.22.2",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.28",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"bigi": "^1.4.2",
"bs58": "^4.0.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chalk": "^4.0.0",
"create-hmac": "^1.1.7",
"ecurve": "^1.0.6",
"eslint": "^7.19.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-typescript": "^0.14.0",
"flow-bin": "^0.149.0",
"flowgen": "^1.14.0",
"gh-pages": "^3.1.0",
"mocha": "^7.1.1",
"node-fetch": "^2.6.1",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"randombytes": "^2.1.0",
"text-encoding": "^0.7.0",
"ts-node": "^9.1.1",
"typedoc": "^0.21.9",
"typescript": "^4.1.5",
"wait-console-input": "^0.1.7"
},
"scripts": {
"prepack": "yarn build:flowtypes && yarn flow",
"lint": "yarn eslint . --max-warnings=0",
"clean": "rm -rf dist/",
"build": "yarn tsc -p tsconfig.json",
"build:flowtypes": "find . -type f -not -path './node_modules/*' -not -path './example-node/*' -name '*.d.ts' -exec sh -c 'yarn flowgen --add-flow-header --no-inexact $1 -o ${1%.*.*}.js.flow' _ '{}' \\;",
"flow": "flow --show-all-errors dist/",
"gen-docs": "yarn typedoc",
"prepublish": "yarn run clean && yarn run build",
"run-example": "yarn ts-node -P example-node/tsconfig.json example-node/index.ts",
"device-self-test": "mocha --timeout 3600000 -r ts-node/register test/device-self-test/**/*.test.ts",
"test-all": "yarn device-self-test && yarn test-integration",
"test-integration": "yarn mocha --timeout 3600000 -r ts-node/register test/integration/**/*.test.ts",
"//": "run single test by specifying --grep <name> parameter in test-integration"
}
}