forked from Consensys/surya
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 914 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
{
"name": "surya",
"description": "Sūrya, The Sun God: A set of utilities for inspecting the structure of Solidity contracts.",
"version": "0.2.7",
"main": "lib/index.js",
"author": [
"GNSPS",
"federicobond"
],
"repository": "ConsenSys/surya",
"license": "GPL-3.0",
"bin": "./bin/surya",
"scripts": {
"compile": "babel src --out-dir lib",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"prepare": "npm run compile",
"test": "./test/test.sh"
},
"devDependencies": {
"babel-cli": "*",
"babel-preset-env": "^1.7.0",
"chai": "*",
"coveralls": "^3.0.2",
"isparta": "*",
"mocha": "^5.2.0",
"sinon": "^5.1.1"
},
"dependencies": {
"c3-linearization": "^0.3.0",
"colors": "^1.3.0",
"graphviz": "0.0.8",
"sha1-file": "^1.0.1",
"solidity-parser-antlr": "^0.2.15",
"treeify": "^1.1.0",
"yargs": "^11.1.0"
}
}