forked from protofire/solhint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.02 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
{
"name": "solhint",
"version": "1.1.10",
"description": "Solidity Code Linter",
"main": "solhint.js",
"keywords": [
"solidity",
"linter",
"security-scanner",
"ethereum",
"ast",
"developer-tools",
"code-quality",
"smart-contracts"
],
"homepage": "https://protofire.github.io/solhint/",
"repository": "https://github.com/protofire/solhint",
"scripts": {
"exec-tests": "nyc -x \"**/grammar/**\" mocha && nyc report --reporter=text-lcov | coveralls",
"test": "eslint *.js lib/*.js lib/rules/*.js lib/rules/**/*.js test/*.js && npm run exec-tests"
},
"bin": {
"solhint": "solhint.js"
},
"author": "Ilya Drabenia <[email protected]>",
"license": "MIT",
"dependencies": {
"antlr4": "4.7.0",
"commander": "2.11.0",
"eslint": "4.6.1",
"glob": "7.1.2",
"ignore": "^3.3.7",
"lodash": "4.17.4"
},
"devDependencies": {
"assert": "1.4.1",
"coveralls": "2.13.1",
"mocha": "3.5.0",
"mocha-lcov-reporter": "1.3.0",
"nyc": "11.2.1"
}
}