-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
67 lines (67 loc) · 1.84 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
{
"name": "omnisharp-client",
"description": "A node client for omnisharp-roslyn",
"version": "7.2.3",
"omnisharp-roslyn": "v1.27.2",
"bugs": {
"url": "https://github.com/OmniSharp/omnisharp-node-client/issues"
},
"homepage": "http://www.omnisharp.net/",
"contributors": [
{
"name": "David Driscoll",
"url": "http://david-driscoll.github.io/"
}
],
"repository": {
"type": "git",
"url": "https://github.com/OmniSharp/omnisharp-node-client.git"
},
"engines": {
"node": ">=0.12.0",
"iojs": ">=1.0.0",
"atom": ">=0.194.0"
},
"main": "lib/omnisharp-client.js",
"typings": "types/lib/omnisharp-client.d.ts",
"scripts": {
"prepublish": "typings install && tsc",
"test": "tsc && npm run lint && mocha",
"test:watch": "concurrently -r \"mocha --watch\" \"tsc -w\"",
"lint": "tslint languageserver/**/*.ts lib/**/*.ts test/**/*.ts",
"lint:fix": "tslint --fix languageserver/**/*.ts lib/**/*.ts test/**/*.ts",
"compile:watch": "concurrently -r \"tsc -w\" \"tslint \"",
"tsc": "tsc",
"tsc:w": "tsc -w"
},
"author": "",
"license": "MIT",
"dependencies": {
"decompress": "^4.2.0",
"decompress-targz": "^4.1.0",
"decompress-unzip": "^4.0.1",
"globby": "^6.1.0",
"lodash": "^4.17.4",
"md5": "^2.2.1",
"request": "^2.79.0",
"rimraf": "^2.5.4",
"rxjs": "^5.4.2",
"strip-bom": "^3.0.0",
"ts-disposables": "^2.2.3",
"typings": "^2.1.1",
"vscode-jsonrpc": "^3.3.1",
"vscode-languageserver": "^3.3.0"
},
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.13",
"chai": "^4.1.0",
"concurrently": "^3.5.0",
"mocha": "^3.4.2",
"tslint": "^5.5.0",
"tslint-eslint-rules": "^4.1.1",
"tslint-microsoft-contrib": "^5.0.1",
"typescript": "^2.4.1"
}
}