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
67 lines (67 loc) · 2.01 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.01 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
{
"name": "javascript-typescript-langserver",
"homepage": "https://github.com/sourcegraph/javascript-typescript-langserver",
"author": "Sourcegraph",
"version": "1.0.2",
"license": "Apache-2.0",
"description": "A JavaScript/TypeScript analysis library that supports intelligent editor plugin operations like jump-to-def and find-refs. Implements the Language Server Protocol.",
"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": {
"test": "node bin/test",
"fmt-check": "node bin/fmt-check",
"fmt": "node bin/fmt",
"prepublish": "node bin/build",
"postinstall": "node bin/build"
},
"dependencies": {
"@types/async": "^2.0.32",
"@types/node": "^6.0.46",
"async": "^2.0.32",
"body-parser": "^1.15.2",
"commander": "^2.9.0",
"es6-promise": "^3.2.1",
"express": "^4.14.0",
"jsonpath-plus": "^0.15.0",
"node-fs": "^0.1.7",
"node-mkdirp": "0.0.1",
"sanitize-html": "^1.13.0",
"typescript": "2.1.1",
"vscode": "^1.0.1",
"vscode-languageserver": "^2.2.1",
"vscode-languageserver-types": "^1.0.3"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.32",
"chai": "^3.4.34",
"mocha": "^2.2.32",
"ts-node": "^1.6.1",
"typescript-formatter": "^4.0.0"
},
"files": [
"lib",
"bin/build"
],
"bin": {
"javascript-typescript-langserver": "./lib/language-server.js",
"javascript-typescript-stdio": "./lib/language-server-stdio.js"
}
}