forked from OmniSharp/omnisharp-atom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.28 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
{
"name": "omnisharp-atom",
"main": "./lib/omnisharp-atom/omnisharp-atom",
"version": "0.2.1",
"description": "Brings the wonderful omnisharp server to powercharge atom's C# development experience",
"activationEvents": [],
"repository": "https://github.com/OmniSharp/omnisharp-atom",
"license": "MIT",
"engines": {
"atom": ">0.50.0"
},
"dependencies": {
"ansi-to-html": "~0.1.0",
"bluebird": "~2.3.2",
"event-kit": "0.7.2",
"freeport": "^1.0.4",
"fs-plus": "^2.3.1",
"jquery": "^2.1.1",
"omnisharp-server-roslyn-binaries": "latest",
"request-promise": "~0.1.2",
"semver": "^4.2.0",
"underscore": "~1.7.0",
"vue": "~0.10.6",
"atom-space-pen-views": "^2.0.3"
},
"consumedServices": {
"status-bar": {
"versions": {
"^0.58.0": "consumeStatusBar"
}
}
},
"providedServices": {
"autocomplete.provider": {
"description": "A C# Roslyn powered autocomplete-plus provider.",
"versions": {
"1.0.0": "provideAutocomplete"
}
}
},
"devDependencies": {
"coffeelint": "^1.6.0",
"grunt": "^0.4.5",
"grunt-coffeelint": "0.0.13",
"grunt-contrib-watch": "^0.6.1"
},
"apmPackageDependencies": {
"autocomplete-plus": "^2.0.2",
"language-csharp": ">=0.3.0"
}
}