This repository has been archived by the owner on Dec 23, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
86 lines (86 loc) · 2.3 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
{
"name": "atom-languageclient",
"version": "1.0.7",
"description": "",
"main": "index.js",
"scripts": {
"lint": "npm run lint-rules && tslint \"src/**/*.ts\" \"spec/**/*.ts\" \"atom-languageservices/*.ts\" -e \"**/*.d.ts\" -t verbose",
"lint-rules": "tsc -p rules/tsconfig.json",
"test": "npm run lint",
"tsc": "tsc",
"do-publish": "node scripts/publish.js",
"tsc:w": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OmniSharp/atom-languageclient.git"
},
"author": "OmniSharp Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/OmniSharp/atom-languageclient/issues"
},
"homepage": "https://github.com/OmniSharp/atom-languageclient#readme",
"dependencies": {
"atom-languageservices": "~1.0.0",
"atom-package-deps": "^4.0.1",
"aurelia-dependency-injection": "^1.0.0",
"chokidar": "^1.6.0",
"file-url": "^1.1.0",
"fuse.js": "^2.3.0",
"lodash": "^4.14.0",
"reflect-metadata": "^0.1.3",
"rxjs": "^5.0.0-beta.11",
"semver": "^5.3.0",
"symbol-observable": "^1.0.2",
"ts-disposables": "^2.1.0",
"typescript": "^2.0.0",
"vscode-jsonrpc": "^2.2.0",
"vscode-languageserver-types": "^1.0.1"
},
"devDependencies": {
"chai": "^3.5.0",
"codelyzer": "0.0.26",
"globby": "^6.0.0",
"mocha": "^2.5.3",
"rimraf": "^2.5.4",
"tslint": "^3.14.0",
"tslint-microsoft-contrib": "git://github.com/Microsoft/tslint-microsoft-contrib.git#releases",
"typescript": "^2.1.0-dev.20160731"
},
"atomTestRunner": "./spec/test-runner",
"package-deps": [
"linter"
],
"providedServices": {
"atom-language-client": {
"description": "Provides access to the atom-language-client api",
"versions": {
"1.0.0": "provide-atom-language-client"
}
},
"autocomplete.provider": {
"description": "A C# Roslyn powered autocomplete-plus provider.",
"versions": {
"2.0.0": "provide-atom-autocomplete"
}
}
},
"consumedServices": {
"atom-language": {
"versions": {
"1.0.0": "consume-atom-language"
}
},
"linter-indie": {
"versions": {
"1.0.0": "consume-atom-linter"
}
},
"status-bar": {
"versions": {
"^1.0.0": "consume-status-bar"
}
}
}
}