-
Notifications
You must be signed in to change notification settings - Fork 128
/
package.json
64 lines (64 loc) · 1.59 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
62
63
64
{
"name": "ethlint",
"version": "1.2.5",
"description": "Linter to identify and fix Style & Security issues in Solidity",
"main": "./lib/solium.js",
"bin": {
"solium": "./bin/solium.js"
},
"scripts": {
"test": "nyc --reporter=text --reporter=html mocha --require should --reporter spec --recursive",
"lint": "eslint lib/ test/ bin/ config/",
"lint-fix": "eslint lib/ test/ bin/ config/ --fix"
},
"keywords": [
"lint",
"static-analysis",
"solidity",
"abstract-syntax-tree",
"ethereum",
"smart-contracts",
"ethlint",
"solium",
"blockchain",
"code-quality",
"dapp",
"developer-tools",
"security",
"soliumconfig",
"soliumplugin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/duaraghav8/Ethlint.git"
},
"author": "Raghav Dua <[email protected]>",
"license": "MIT",
"dependencies": {
"ajv": "^5.2.2",
"chokidar": "^1.6.0",
"colors": "^1.1.2",
"commander": "^2.9.0",
"diff": "^3.5.0",
"eol": "^0.9.1",
"js-string-escape": "^1.0.1",
"lodash": "^4.14.2",
"sol-digger": "0.0.2",
"sol-explore": "1.6.1",
"solium-plugin-security": "0.1.1",
"solparse": "2.2.8",
"text-table": "^0.2.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^4.13.0",
"mocha": "^3.4.2",
"nyc": "^11.2.1",
"should": "^11.0.0",
"solium-config-test": "0.0.1",
"solium-config-test-invalid-schema": "0.0.0",
"solium-config-test-invalid-syntax": "0.0.0",
"solium-plugin-test": "0.1.5",
"solium-plugin-test-invalid-schema": "0.0.0"
}
}