-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
144 lines (144 loc) · 3.32 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "omnisharp-atom",
"main": "./index.js",
"atomTestRunner": "./spec/test-runner",
"version": "0.31.2",
"description": "Brings the wonderful OmniSharp server to powercharge Atom's C# development experience",
"keywords": [
"c#",
".net",
"asp.net",
"omnisharp"
],
"repository": "https://github.com/OmniSharp/omnisharp-atom",
"author": {
"name": "Omnisharp Atom Team",
"url": "https://github.com/OmniSharp/graphs/contributors"
},
"contributors": [
{
"name": "Martijn Laarman",
"url": "http://localghost.io"
},
{
"name": "Stephen James",
"url": "http://stephenjamescode.blogspot.co.uk/"
},
{
"name": "Chad Tolkien",
"url": "http://chad.tolkien.id.au/"
},
{
"name": "David Driscoll",
"url": "https://twitter.com/david_blacklite"
},
{
"name": "Sam Williamson",
"url": "https://twitter.com/sgwill"
},
{
"name": "William Luu",
"url": "https://twitter.com/willl"
},
{
"name": "Jason Imison",
"url": "https://twitter.com/jasonimison"
}
],
"license": "MIT",
"engines": {
"atom": ">=0.199.0 <2.0.0"
},
"activationCommands": [],
"menus": [
"atom-sharper.cson"
],
"scripts": {
"prepublish": "typings install && gulp npm-prepublish",
"test": "apm test",
"lint": "tslint lib/**/*.ts test/**/*.ts",
"tsc:w": "tsc -w"
},
"dependencies": {
"atom-package-deps": "^4.3.1",
"atom-space-pen-views": "^2.2.0",
"entities": "^1.1.1",
"escape-html": "^1.0.1",
"fastdom": "^1.0.5",
"font-awesome": "^4.7.0",
"fuzzaldrin": "^2.1.0",
"globby": "^6.1.0",
"jquery": "^3.1.1",
"lodash": "^4.17.4",
"omnisharp-client": "^7.0.5",
"rxjs": "^5.1.0",
"semver": "^5.0.3",
"ts-disposables": "^2.2.3"
},
"devDependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-3": "^6.22.0",
"chai": "^3.5.0",
"del": "^2.2.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-sourcemap": "^1.0.1",
"gulp-sourcemaps": "^2.4.0",
"gulp-tslint": "^7.0.1",
"gulp-typescript": "^3.1.4",
"gulp-util": "^3.0.8",
"merge-stream": "^1.0.1",
"mocha": "^3.2.0",
"mocha-unfunk-reporter": "^0.4.0",
"through2": "^2.0.3",
"tslint": "^4.4.2",
"tslint-eslint-rules": "^3.2.3",
"tslint-microsoft-contrib": "^4.0.0",
"typescript": "^2.2.0",
"typings": "^2.1.0"
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
},
"yeoman-environment": {
"versions": {
"^1.0.0": "consumeYeomanEnvironment"
}
},
"linter-plus-self": {
"versions": {
"0.1.0": "consumeLinter"
}
},
"linter-indie": {
"versions": {
"1.0.0": "consumeIndieLinter"
}
}
},
"providedServices": {
"autocomplete.provider": {
"description": "A C# Roslyn powered autocomplete-plus provider.",
"versions": {
"2.0.0": "provideAutocomplete"
}
},
"linter": {
"versions": {
"1.0.0": "provideLinter"
}
},
"jsonschema.provider": {
"versions": {
"0.1.0": "provideProjectJson"
}
}
},
"package-deps": [
"linter"
]
}