-
Notifications
You must be signed in to change notification settings - Fork 122
/
package.json
61 lines (61 loc) · 1.6 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
{
"name": "solgraph",
"version": "1.0.2",
"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",
"lint": "eslint --cache --ignore-path .gitignore .",
"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": {
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"chai": "*",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-raine": "^0.3.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.6.4",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.1.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.0"
},
"dependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.18.9",
"@solidity-parser/parser": "^0.14.5",
"commander": "*",
"get-stdin-promise": "*",
"graphlib": "^2.1.8",
"graphlib-dot": "^0.6.4"
}
}