-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
65 lines (65 loc) · 1.93 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
{
"name": "lsp-editor-adapter",
"version": "0.0.10",
"description": "Make your CodeMirror editor smarter by connecting to a language server",
"main": "lib/index.js",
"module": "lib/index.js",
"files": [
"lib"
],
"types": "lib/index.d.ts",
"scripts": {
"test": "karma start",
"test-dev": "karma start --browsers Chrome --singleRun false --timeout 30000 --autoWatch",
"lint": "tslint --project tsconfig-test.json --format stylish",
"lint-fix": "tslint --project tsconfig-test.json --format stylish --fix",
"prepare": "rimraf lib && webpack && cp src/*.css lib",
"dev": "rimraf lib && webpack --watch"
},
"author": "Wylie Conlon <[email protected]",
"license": "ISC",
"keywords": [
"lsp",
"languageserver",
"codemirror"
],
"homepage": "https://github.com/wylieconlon/lsp-editor-adapter",
"repository": "github:wylieconlon/lsp-editor-adapter",
"peerDependencies": {
"codemirror": "^5.41.0"
},
"dependencies": {
"lodash-es": "^4.17.11",
"vscode-jsonrpc": "^4.0.0",
"vscode-languageclient": "^5.2.1",
"vscode-languageserver-protocol": "^3.14.1",
"vscode-languageserver-types": "^3.14.0"
},
"devDependencies": {
"@sourcegraph/vscode-ws-jsonrpc": "0.0.3-fork",
"@types/codemirror": "0.0.74",
"@types/expect": "^1.20.4",
"@types/lodash-es": "^4.17.3",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.7",
"@types/sinon": "^7.0.12",
"codemirror": "^5.47.0",
"css-loader": "^2.1.1",
"expect": "^24.8.0",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^4.0.0-rc.6",
"mocha": "^6.1.4",
"puppeteer": "^1.17.0",
"rimraf": "^2.6.3",
"sinon": "^7.3.2",
"style-loader": "^0.23.1",
"ts-loader": "^6.0.2",
"tslint": "^5.17.0",
"typescript": "^3.5.1",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.2"
}
}