加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
package.json 1.16 KB
一键复制 编辑 原始数据 按行查看 历史
Raine Revere 提交于 2018-08-20 11:08 . 0.3.3
{
"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": "raineorshine@gmail.com",
"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"
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化