-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
75 lines (75 loc) · 2.09 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": "yarn rimraf dist && tsc && yarn copy-files",
"copy-files": "copyfiles -u 0 src/**/*.proto dist/",
"test:clean": "yarn ts-node tests/pullImageKillOld.ts",
"test": "yarn test:clean && yarn build && jest",
"linter": "eslint --max-warnings 0 src/**/*.ts",
"linter:fix": "yarn linter --fix",
"format": "prettier --write ."
},
"bugs": {
"url": "https://github.com/zondax/zemu/issues"
},
"dependencies": {
"@grpc/grpc-js": "^1.11.1",
"@grpc/proto-loader": "^0.7.13",
"@ledgerhq/hw-transport-http": "^6.30.1",
"axios": "^1.7.2",
"axios-retry": "^4.4.1",
"dockerode": "^4.0.2",
"elfy": "^1.0.0",
"fs-extra": "^11.2.0",
"get-port": "^5.1.1",
"pngjs": "^7.0.0",
"randomstring": "^1.3.0"
},
"devDependencies": {
"@ledgerhq/hw-transport": "^6.31.1",
"@types/dockerode": "^3.3.30",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.11",
"@types/pngjs": "^6.0.5",
"@types/randomstring": "^1.3.0",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@zondax/ledger-substrate": "^0.44.7",
"copyfiles": "^2.4.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-promise": "^6.4.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "5.5.3"
},
"files": [
"dist/**/*"
],
"packageManager": "[email protected]"
}