-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 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
{
"name": "ide-bash",
"version": "1.0.11",
"description": "Language Bash language support for Atom-IDE",
"main": "src/main.js",
"repository": {
"type": "git",
"url": "[email protected]:mads-hartmann/ide-bash.git"
},
"author": "Mads Hartmann <[email protected]> (https://twitter.com/mads_hartmann)",
"license": "MIT",
"engines": {
"atom": ">=1.21.0"
},
"bugs": {
"url": "https://github.com/mads-hartmann/ide-bash/issues"
},
"homepage": "https://github.com/mads-hartmann/ide-bash#readme",
"dependencies": {
"atom-languageclient": "^0.9.5"
},
"enhancedScopes": [
"source.shell",
"bash"
],
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "provideAutocomplete"
}
},
"code-highlight": {
"versions": {
"0.1.0": "provideCodeHighlight"
}
},
"definitions": {
"versions": {
"0.1.0": "provideDefinitions"
}
},
"find-references": {
"versions": {
"0.1.0": "provideFindReferences"
}
},
"outline-view": {
"versions": {
"0.1.0": "provideOutlines"
}
}
}
}