forked from sourcegraph/javascript-typescript-langserver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.19 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.19 KB
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
{
"name": "javascript-typescript-langserver",
"homepage": "https://github.com/sourcegraph/javascript-typescript-langserver",
"author": "Sourcegraph",
"version": "2.0.0-pre.5",
"license": "Apache-2.0",
"description": "Implementation of the Language Server Protocol for JavaScript and TypeScript",
"keywords": [
"LSP",
"compiler",
"language",
"javascript",
"editor",
"typescript"
],
"bugs": {
"url": "https://github.com/sourcegraph/javascript-typescript-langserver/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/sourcegraph/javascript-typescript-langserver.git"
},
"engines": {
"node": ">=6.0.0",
"vscode": "1.x.x"
},
"scripts": {
"clean": "rimraf lib",
"cover": "nyc --silent --all --require source-map-support/register mocha --timeout 7000 --slow 2000 lib/test/**/*.js",
"test": "mocha --require source-map-support/register --timeout 7000 --slow 2000 lib/test/**/*.js",
"lint": "tslint -t msbuild -c tslint.json 'src/**/*.ts'",
"build": "tsc",
"watch": "tsc -w"
},
"dependencies": {
"async": "^2.1.5",
"bluebird": "^3.4.7",
"chai": "^3.4.34",
"chai-as-promised": "^6.0.0",
"commander": "^2.9.0",
"glob": "^7.1.1",
"lodash": "^4.17.4",
"mz": "^2.6.0",
"typescript": "2.2.1",
"vscode-jsonrpc": "^3.1.0",
"vscode-languageserver": "^3.1.0",
"vscode-languageserver-types": "^3.0.3",
"yarn": "^0.21.3"
},
"devDependencies": {
"@types/async": "2.0.38",
"@types/bluebird": "3.0.37",
"@types/chai": "3.4.34",
"@types/chai-as-promised": "0.0.29",
"@types/glob": "5.0.30",
"@types/lodash": "4.14.55",
"@types/mocha": "2.2.32",
"@types/mz": "0.0.30",
"@types/node": "6.0.46",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"rimraf": "^2.6.1",
"source-map-support": "^0.4.11",
"ts-node": "^1.6.1",
"tslint": "^4.5.1",
"typescript-formatter": "^4.0.0"
},
"bin": {
"javascript-typescript-langserver": "./lib/language-server.js",
"javascript-typescript-stdio": "./lib/language-server-stdio.js"
},
"nyc": {
"include": [
"lib/**/*.js"
],
"exclude": [
"lib/test/**/*.js"
]
}
}