-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.05 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
{
"name": "eslint-lsp",
"version": "0.1.2",
"description": "Eslint language server",
"main": "src/index.js",
"bin": {
"eslint-lsp": "src/cli.js"
},
"files": [
"src",
"!src/__fixtures",
"!src/*.test.js"
],
"scripts": {
"check": "tsc --noEmit",
"test": "jest"
},
"keywords": [
"lsp",
"language-server",
"eslint"
],
"author": "Daniel Perez Alvarez <[email protected]> (https://github.com/danielpza)",
"license": "MIT",
"devDependencies": {
"@types/eslint": "^7.2.4",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.10",
"jest": "^26.5.3",
"typescript": "^4.0.3"
},
"dependencies": {
"import-global": "^0.1.0",
"vscode-languageserver": "^6.1.1",
"vscode-languageserver-textdocument": "^1.0.1",
"vscode-uri": "^2.1.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielpza/eslint-lsp.git"
},
"bugs": {
"url": "https://github.com/danielpza/eslint-lsp/issues"
},
"homepage": "https://github.com/danielpza/eslint-lsp#readme"
}