forked from naddison36/sol2uml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.52 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
{
"name": "sol2uml",
"version": "1.1.30",
"description": "Unified Modeling Language (UML) class diagram generator for Solidity contracts",
"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",
"prettier": "prettier --write \"src/**/*.ts\"",
"prettier:check": "prettier --check \"src/**/*.ts\"",
"test": "npx jest"
},
"preferGlobal": true,
"contributors": [
"Nick Addison"
],
"repository": "github:naddison36/sol2uml",
"license": "MIT",
"dependencies": {
"@solidity-parser/parser": "^0.13.2",
"axios": "^0.21.1",
"commander": "^8.1.0",
"debug": "^4.3.2",
"js-graph-algorithms": "^1.0.18",
"klaw": "^3.0.0",
"svg-to-png": "^4.0.0",
"verror": "^1.10.0",
"viz.js": "^1.8.2"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/klaw": "^3.0.2",
"@types/verror": "^1.10.5",
"jest": "^27.0.6",
"openzeppelin-solidity": "2.5.1",
"prettier": "^2.3.2",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"files": [
"lib/*.js",
"lib/*.d.ts",
"sol2uml"
],
"bin": {
"sol2uml": "lib/sol2uml.js"
},
"keywords": [
"Unified Modeling Language",
"UML",
"Solidity",
"Ethereum",
"Class diagram",
"Class",
"diagram",
"Contract",
"Interface",
"Relationship",
"SVG",
"Blockchain",
"Model"
]
}