-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
49 lines (49 loc) · 1.03 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
{
"name": "linter-js-standard",
"main": "./lib/init.js",
"activationCommands": [],
"version": "8.0.0",
"description": "Linter plugin for JavaScript Standard Style",
"keywords": [
"javascript",
"standard",
"linter"
],
"author": {
"name": "Ricardo Barros",
"email": "ricardofbarros@hotmail.com"
},
"repository": "https://github.com/ricardofbarros/linter-js-standard.git",
"license": "MIT",
"engines": {
"atom": ">=1.14.0 <2.0.0"
},
"dependencies": {
"atom-linter": "^10.0.0",
"atom-package-deps": "^4.6.2",
"babel-eslint": "^10.0.1",
"detect-eslint-config": "^0.5.7",
"eslint-rule-documentation": "^1.0.22",
"esprima": "^4.0.0",
"ignore": "^5.0.5",
"loophole": "^1.1.0",
"pkg-config": "^1.1.1",
"semistandard": "^14.0.1",
"standard": "^14.1.0"
},
"standard": {
"globals": [
"atom"
]
},
"package-deps": [
"linter:2.0.0"
],
"providedServices": {
"linter": {
"versions": {
"2.0.0": "provideLinter"
}
}
}
}