-
Notifications
You must be signed in to change notification settings - Fork 119
/
package.json
43 lines (43 loc) · 1020 Bytes
/
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
{
"name": "surya",
"description": "Sūrya, The Sun God: A set of utilities for inspecting the structure of Solidity contracts.",
"version": "0.4.12",
"main": "lib/index.js",
"author": [
"GNSPS"
],
"repository": "ConsenSys/surya",
"license": "Apache-2.0",
"bin": {
"surya": "bin/surya"
},
"scripts": {
"compile": "rm -rf lib && babel src --out-dir lib",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"prepare": "npm run compile",
"test": "./test/test.sh"
},
"husky": {
"hooks": {
"pre-push": "npm run compile"
}
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"husky": "^2.2.0",
"mocha": "^5.2.0",
"sinon": "^5.1.1"
},
"dependencies": {
"@solidity-parser/parser": "^0.16.1",
"c3-linearization": "^0.3.0",
"colors": "^1.4.0",
"graphviz": "0.0.9",
"sha1-file": "^2.0.0",
"treeify": "^1.1.0",
"yargs": "^17.0.0"
}
}