forked from EricR/sol-function-profiler
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.08 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
{
"name": "sol-function-profiler",
"version": "1.0.1",
"description": "",
"main": "index.js",
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"bin": {
"sol-function-profiler": "./cli.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier-standard",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/agonzalezv/sol-function-profiler.git"
},
"author": "Eric Rafaloff, Andres Gonzalez, Alex Tikonoff",
"license": "MIT",
"bugs": {
"url": "https://github.com/agonzalezv/sol-function-profiler/issues"
},
"homepage": "https://github.com/agonzalezv/sol-function-profiler#readme",
"dependencies": {
"ascii-table": "0.0.9",
"solidity-parser-antlr": "^0.3.2",
"yargs": "^12.0.2"
},
"devDependencies": {
"eslint": "^5.6.1",
"husky": "^1.1.2",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"prettier-standard": "^8.0.1",
"standard": "^12.0.1"
}
}