forked from sourcegraph/javascript-typescript-langserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.1 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
{
"name": "javascript-typescript-langserver",
"homepage": "https://github.com/sourcegraph/javascript-typescript-langserver",
"author": "Sourcegraph",
"version": "0.0.0-development",
"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"
},
"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": "npm run tslint && npm run prettier",
"tslint": "tslint -c tslint.json -p .",
"prettier": "prettier --list-different --write \"src/**/*.ts\"",
"build": "tsc",
"watch": "tsc -w",
"semantic-release": "semantic-release",
"commitmsg": "validate-commit-msg"
},
"dependencies": {
"chai": "^4.0.1",
"chai-as-promised": "^7.0.0",
"chalk": "^2.2.0",
"commander": "^2.9.0",
"fast-json-patch": "^2.0.2",
"glob": "^7.1.1",
"iterare": "^0.0.8",
"jaeger-client": "^3.5.3",
"lodash": "^4.17.4",
"mz": "^2.6.0",
"object-hash": "^1.1.8",
"opentracing": "^0.14.0",
"rxjs": "^5.5.0",
"semaphore-async-await": "^1.5.1",
"string-similarity": "^1.1.0",
"typescript": "2.8.3",
"vscode-jsonrpc": "^3.3.1",
"vscode-languageserver": "^4.2.1",
"vscode-languageserver-types": "^3.0.3"
},
"devDependencies": {
"@sourcegraph/prettierrc": "^2.0.0",
"@sourcegraph/tsconfig": "^3.0.0",
"@sourcegraph/tslint-config": "^11.0.1",
"@types/chai": "4.0.6",
"@types/chai-as-promised": "^7.1.0",
"@types/glob": "^5.0.30",
"@types/lodash": "^4.14.76",
"@types/mocha": "^5.0.0",
"@types/mz": "^0.0.31",
"@types/node": "^7.0.32",
"@types/object-hash": "^1.1.0",
"@types/rimraf": "^2.0.2",
"@types/sinon": "^4.0.0",
"@types/temp": "^0.8.29",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"husky": "^0.14.0",
"mocha": "^5.0.0",
"nyc": "^11.0.2",
"prettier": "1.12.1",
"rimraf": "^2.6.1",
"semantic-release": "^15.1.8",
"sinon": "^5.0.0",
"source-map-support": "^0.5.0",
"temp": "^0.8.3",
"tslint": "^5.8.0",
"tslint-language-service": "^0.9.6",
"validate-commit-msg": "^2.12.2"
},
"bin": {
"javascript-typescript-langserver": "./lib/language-server.js",
"javascript-typescript-stdio": "./lib/language-server-stdio.js"
},
"nyc": {
"include": [
"lib/**/*.js"
],
"exclude": [
"lib/test/**/*.js"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"greenkeeper": {
"ignore": [
"@types/node"
]
}
}