-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
91 lines (91 loc) · 1.91 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "linter-elm-make",
"main": "./lib/linter-elm-make.js",
"version": "0.29.0",
"description": "Lint Elm code with elm-make",
"activationCommands": {},
"repository": "https://github.com/mybuddymichael/linter-elm-make",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 < 2.0.0"
},
"dependencies": {
"atom-linter": "10.0.0",
"atom-space-pen-views": "2.2.0",
"chokidar": "1.7.0",
"diff": "3.3.0",
"fs-extra": "0.30.0",
"path": "0.12.7",
"readdir": "0.0.13",
"tmp": "0.0.31",
"underscore-plus": "1.6.6",
"atom-package-deps": "4.6.0",
"atom-languageclient": "^0.6.1",
"react": "15.6.1",
"react-dom": "15.6.1"
},
"package-deps": [
"language-elm",
"linter",
"linter-ui-default"
],
"providedServices": {
"linter-elm-make.getWorkDirectory": {
"versions": {
"1.0.0": "provideGetWorkDirectory"
}
},
"linter": {
"versions": {
"1.0.0": "provideLinter"
}
},
"intentions:list": {
"versions": {
"1.0.0": "provideIntentions"
}
},
"code-actions": {
"versions": {
"0.1.0": "provideCodeActions"
}
}
},
"consumedServices": {
"elmjutsu.getTokenInfo": {
"versions": {
"1.0.0": "consumeGetTokenInfo"
}
},
"elmjutsu.goToDefinition": {
"versions": {
"1.0.0": "consumeGoToDefinition"
}
},
"elmjutsu.getFunctionsMatchingType": {
"versions": {
"1.0.0": "consumeGetFunctionsMatchingType"
}
},
"elmjutsu.addImport": {
"versions": {
"1.0.0": "consumeAddImport"
}
},
"elmjutsu.addImportAs": {
"versions": {
"1.0.0": "consumeAddImportAs"
}
},
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
},
"datatip": {
"versions": {
"0.1.0": "consumeDatatipService"
}
}
}
}