forked from richard-ramos/solidity-diagram-gen
-
Notifications
You must be signed in to change notification settings - Fork 276
/
package.json
75 lines (75 loc) · 1.84 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": "sol2uml",
"version": "2.5.21",
"description": "Solidity contract visualisation tool.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"buildSol": "cd ./src/contracts && solc **/*.sol",
"build": "tsc --build ./tsconfig.json",
"clean": "tsc --build --clean ./tsconfig.json",
"package-lock": "npm i --package-lock-only",
"permit": " chmod 775 lib/sol2uml.js",
"prettier": "prettier --write src/**/*.ts **/*.md",
"prettier:check": "prettier --check src/**/*.ts **/*.md",
"test": "npx jest",
"prepublishOnly": "npm run clean && npm run package-lock && npm run build && npm run permit"
},
"preferGlobal": true,
"contributors": [
"Nick Addison"
],
"repository": "github:naddison36/sol2uml",
"license": "MIT",
"dependencies": {
"@aduh95/viz.js": "^3.7.0",
"@solidity-parser/parser": "^0.16.1",
"axios": "^1.6.0",
"axios-debug-log": "^1.0.0",
"cli-color": "^2.0.3",
"commander": "^11.1.0",
"convert-svg-to-png": "^0.6.4",
"debug": "^4.3.4",
"diff-match-patch": "^1.0.5",
"ethers": "^5.7.2",
"js-graph-algorithms": "^1.0.18",
"klaw": "^4.1.0"
},
"devDependencies": {
"@openzeppelin/contracts": "^4.9.3",
"@types/diff-match-patch": "^1.0.35",
"@types/jest": "^29.5.7",
"@types/klaw": "^3.0.5",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"files": [
"lib/*.js",
"lib/*.d.ts",
"lib/utils/*.js",
"lib/utils/*.d.ts",
"sol2uml"
],
"bin": {
"sol2uml": "lib/sol2uml.js"
},
"keywords": [
"Unified Modeling Language",
"UML",
"Solidity",
"Ethereum",
"diagram",
"class",
"diagram",
"contract",
"Blockchain",
"storage",
"flatten",
"visual",
"tool",
"cli"
]
}