-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
72 lines (72 loc) · 1.82 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
{
"name": "tx2uml",
"version": "1.1.30",
"description": "Ethereum transaction visualizer that generates UML sequence diagrams.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc --build ./tsconfig.json",
"permit": "chmod 775 lib/tx2uml.js",
"clean": "tsc --build --clean ./tsconfig.json",
"package-lock": "npm i --package-lock-only",
"examples": "java -jar ./lib/plantuml.jar ./examples/syntax.puml ./examples/delegate.puml",
"prettier:check": "prettier --check --no-semi '**/*.{ts,md}'",
"prettier:fix": "prettier --write --no-semi '**/*.{ts,md}'",
"test": "npx jest",
"prepublishOnly": "npm run clean && npm run package-lock && npm run build && npm run permit"
},
"author": "Nick Addison",
"repository": "github:naddison36/tx2uml",
"license": "MIT",
"files": [
"lib/*.js",
"lib/*.d.ts",
"lib/clients/*.js",
"lib/clients/*.d.ts",
"lib/ethers/*.js",
"lib/ethers/*.d.ts",
"lib/labels/*.json",
"lib/types/*.js",
"lib/types/*.d.ts",
"lib/plantuml.jar",
"lib/utils/*.js",
"lib/utils/*.d.ts"
],
"bin": {
"tx2uml": "lib/tx2uml.js"
},
"keywords": [
"Unified Modeling Language",
"UML",
"Ethereum",
"Sequence diagram",
"Sequence",
"diagram",
"transaction",
"trace",
"debug",
"Blockchain",
"visual",
"transfer",
"security",
"audit"
],
"dependencies": {
"axios": "^1.6.7",
"axios-debug-log": "^1.0.0",
"bignumber.js": "^9.1.2",
"commander": "^12.0.0",
"debug": "^4.3.4",
"ethers": "^5.7.2",
"p-limit": "^3.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.17",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}