forked from Zondax/zemu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.9 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
{
"name": "@zondax/zemu",
"author": "Zondax GmbH",
"license": "Apache-2.0",
"version": "0.0.0",
"description": "Zemu Testing Framework",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"types": "./dist/index.d.ts",
"homepage": "https://github.com/zondax/zemu",
"repository": {
"type": "git",
"url": "git+https://github.com/zondax/zemu.git"
},
"keywords": [
"Zondax",
"Ledger",
"Testing",
"Zemu"
],
"scripts": {
"build": "tsc && yarn copy-files",
"copy-files": "copyfiles -u 0 src/**/*.proto dist/",
"test": "yarn build && jest"
},
"bugs": {
"url": "https://github.com/zondax/zemu/issues"
},
"dependencies": {
"@grpc/grpc-js": "^1.3.4",
"@grpc/proto-loader": "^0.6.4",
"@ledgerhq/hw-transport": "^6.1.0",
"@ledgerhq/hw-transport-http": "^6.1.0",
"dockerode": "^3.3.0",
"axios": "^0.22.0",
"axios-retry": "^3.2.0",
"elfy": "^1.0.0",
"fs-extra": "^10.0.0",
"get-port": "^5.1.1",
"json-rpc2": "^2.0.0",
"path": "^0.12.7",
"pngjs": "^6.0.0",
"randomstring": "^1.2.1",
"rfb2": "^0.2.2",
"sleep": "^6.3.0"
},
"devDependencies": {
"@zondax/ledger-substrate": "^0.18.0",
"@types/fs-extra": "^9.0.12",
"@types/jest": "^26.0.24",
"@types/ledgerhq__hw-transport": "^4.21.4",
"@types/pngjs": "^6.0.1",
"@types/sleep": "^0.0.8",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"copyfiles": "^2.4.1",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"js-sha512": "^0.8.0",
"prettier": "^2.3.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.4"
},
"moduleDirectories": [
"node_modules",
"dist"
],
"publishConfig": {
"access": "public"
}
}