-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.64 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
{
"name": "solidity-mermaid",
"version": "0.1.2",
"description": "A Solidity AST parser that allows to convert smart contracts into Github's Mermaid.js language for diagramming.",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"author": "Ernesto García <[email protected]>",
"license": "MIT",
"private": false,
"homepage": "https://www.npmjs.com/package/solidity-mermaid",
"repository": {
"type": "git",
"url": "git+https://github.com/ernestognw/solidity-mermaid.git"
},
"bugs": {
"url": "https://github.com/ernestognw/solidity-mermaid/issues"
},
"scripts": {
"test": "mocha",
"coverage": "c8 npm run test --",
"prepublishOnly": "npm run clean",
"prepare": "tsc && tsc-alias",
"clean": "rm -rf dist"
},
"files": [
"/src",
"/dist",
"!**/tests",
"!**/__tests__",
"!**/*.tsbuildinfo",
"!**/*.test.*"
],
"keywords": [
"solidity",
"mermaid",
"diagram",
"ethereum"
],
"devDependencies": {
"@openzeppelin/contracts": "^4.8.1",
"@types/chai": "^4.3.4",
"@types/glob": "^8.0.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"axios": "^1.2.6",
"c8": "^7.12.0",
"chai": "^4.3.7",
"eslint": "^8.32.0",
"glob": "^8.1.0",
"jison": "^0.4.18",
"mocha": "^10.2.0",
"sinon": "^15.0.1",
"solc": "^0.8.17",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.2",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.4"
},
"dependencies": {
"solidity-ast": "^0.4.43"
}
}