forked from ricardofbarros/linter-js-standard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.14 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
{
"name": "linter-js-standard",
"main": "./lib/init.js",
"activationCommands": [],
"version": "3.2.1",
"description": "Linter plugin for JavaScript Standard Style",
"keywords": [
"javascript",
"standard",
"linter"
],
"author": {
"name": "Ricardo Barros",
"email": "[email protected]"
},
"repository": "https://github.com/ricardofbarros/linter-js-standard.git",
"license": "MIT",
"engines": {
"atom": ">0.50.0"
},
"dependencies": {
"atom-package-deps": "^2.0.5",
"babel-eslint": "^4.1.1",
"esprima": "^2.4.1",
"esprima-fb": "^15001.1.0-dev-harmony-fb",
"find-root": "^0.1.1",
"happiness": "1.0.7",
"lodash.intersection": "^3.2.0",
"loophole": "^1.1.0",
"minimatch": "^2.0.8",
"pkg-config": "^1.1.0",
"q": "^1.4.1",
"semistandard": "7.0.2",
"standard": "5.2.1",
"uber-standard": "^4.0.1"
},
"devDependencies": {
"standard": "^5.2.1"
},
"standard": {
"globals": [
"atom"
]
},
"package-deps": [
"linter"
],
"providedServices": {
"linter": {
"versions": {
"1.0.0": "provideLinter"
}
}
}
}