forked from raineorshine/solgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.11 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.11 KB
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
{
"name": "solgraph",
"version": "0.2.3",
"description": "Visualize Solidity control flow for smart contract security analysis.",
"license": "ISC",
"repository": "https://github.com/raineorshine/solgraph",
"author": {
"name": "Raine Revere",
"email": "raineorshine@gmail.com",
"url": "https://github.com/raineorshine"
},
"engines": {
"node": ">=0.12.0"
},
"scripts": {
"build": "babel -d dist src",
"test": "mocha --compilers js:babel-core/register",
"postinstall": "npm run build",
"watch": "nodemon -w src -w test -x \"npm run build && npm test\""
},
"bin": {
"solgraph": "dist/solgraph.js"
},
"preferGlobal": true,
"keywords": [
"ethereum",
"solidity",
"dot",
"graph",
"contract",
"security"
],
"devDependencies": {
"chai": "*",
"mocha": "*",
"nodemon": "^1.9.2"
},
"dependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-preset-es2015": "^6.9.0",
"commander": "*",
"get-stdin-promise": "*",
"graphlib": "^2.1.0",
"graphlib-dot": "^0.6.2",
"solidity-parser": "0.0.9"
}
}