forked from raineorshine/solgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.16 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
{
"name": "solgraph",
"version": "0.3.3",
"description": "Visualize Solidity control flow for smart contract security analysis.",
"license": "ISC",
"repository": "https://github.com/raineorshine/solgraph",
"author": {
"name": "Raine Revere",
"email": "[email protected]",
"url": "https://github.com/raineorshine"
},
"engines": {
"node": ">=6"
},
"scripts": {
"build": "babel -d dist src",
"test": "mocha --require @babel/register",
"postinstall": "npm run build",
"watch": "nodemon -w src -w test -x \"npm run build && npm test\""
},
"bin": {
"solgraph": "solgraph.js"
},
"preferGlobal": true,
"keywords": [
"ethereum",
"solidity",
"dot",
"graph",
"contract",
"security"
],
"devDependencies": {
"chai": "*",
"mocha": "^5.2.0",
"nodemon": "^1.17.5"
},
"dependencies": {
"@babel/core": "^7.0.0-beta.51",
"@babel/cli": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"@babel/register": "^7.0.0-beta.51",
"commander": "*",
"get-stdin-promise": "*",
"graphlib": "^2.1.5",
"graphlib-dot": "^0.6.2",
"solidity-parser-sc": "^0.4.10"
}
}