forked from naddison36/sol2uml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.34 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
{
"name": "sol2uml",
"version": "1.1.12",
"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 *",
"build": "tsc --build ./tsconfig.json",
"clean": "tsc --build --clean ./tsconfig.json",
"test": "jest"
},
"preferGlobal": true,
"contributors": [
"Nick Addison"
],
"license": "MIT",
"dependencies": {
"commander": "^3.0.1",
"debug": "^4.1.1",
"js-graph-algorithms": "^1.0.18",
"klaw": "^2.1.1",
"request": "^2.88.0",
"solidity-parser-antlr": "0.4.11",
"svg-to-png": "^4.0.0",
"verror": "^1.10.0",
"viz.js": "^1.8.2"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/klaw": "^3.0.0",
"@types/request": "^2.48.3",
"@types/verror": "^1.10.3",
"jest": "^24.8.0",
"openzeppelin-solidity": "2.3.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
},
"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"
]
}