-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 960 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": "atom-solidity-linter",
"version": "0.0.11",
"description": "Integration of Solhint linter with Atom editor",
"main": "./lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/protofire/atom-solidity-linter.git"
},
"keywords": [
"solidity",
"solhint",
"ethereum",
"smart-contract"
],
"author": "Ilya Drabenia",
"license": "MIT",
"bugs": {
"url": "https://github.com/protofire/atom-solidity-linter/issues"
},
"homepage": "https://github.com/protofire/atom-solidity-linter#readme",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"providedServices": {
"linter": {
"versions": {
"2.0.0": "provideLinter"
}
}
},
"dependencies": {
"atom-linter": "^10.0.0",
"atom-package-deps": "^4.6.0",
"solhint": "^1.1.9"
},
"package-deps": [
"linter:2.0.0"
]
}