-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.07 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
{
"name": "elm-lsp",
"version": "1.0.3",
"description": "Linting through LSP protocol for Elm",
"main": "dist/lib/index.js",
"repository": "https://github.com/antew/elm-lsp.git",
"author": "Antew <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc"
},
"bin": {
"elm-lsp": "dist/lib/index.js"
},
"dependencies": {
"elm-analyse": "antew/elm-analyse#lsp-fix",
"file-uri-to-path": "^1.0.0",
"file-url": "^2.0.2",
"find-up": "^3.0.0",
"lodash": "^4.17.11",
"vscode-languageserver": "^5.3.0-next.1"
},
"prettier": {
"printWidth": 120
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/express-ws": "^3.0.0",
"@types/file-url": "^2.0.0",
"@types/find": "^0.2.1",
"@types/find-up": "^2.1.1",
"@types/fs-extra": "^5.0.5",
"@types/lodash": "^4.14.123",
"@types/minimist": "^1.2.0",
"@types/node": "^11.11.3",
"@types/opn": "^5.1.0",
"@types/os-homedir": "^1.0.0",
"@types/request": "^2.48.1",
"@types/ws": "^6.0.1",
"typescript": "^3.3.3333"
}
}