forked from scalameta/metals-languageclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 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
{
"name": "metals-languageclient",
"version": "v0.5.8",
"description": "Language Client library for Node.js Metals clients",
"main": "lib/index.js",
"files": [
"lib"
],
"types": "lib/index.d.ts",
"repository": "https://github.com/scalameta/metals-languageclient",
"author": "Gabriele Petronella <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"prepublish": "rm -rf lib && tsc",
"test": "jest",
"format": "prettier --write '**/*.{ts,js,json,yml}'",
"format-check": "prettier --check '**/*.{ts,js,json,yml}'"
},
"devDependencies": {
"@types/jest": "^27.0.0",
"@types/mkdirp": "^1.0.0",
"@types/node": "^17.0.0",
"@types/node-fetch": "^2.5.4",
"@types/semver": "^7.1.0",
"@types/shell-quote": "^1.6.1",
"jest": "^25.1.0",
"prettier": "2.5.1",
"ts-jest": "^25.0.0",
"typescript": "^3.7.5"
},
"dependencies": {
"@viperproject/locate-java-home": "^1.1.5",
"fp-ts": "^2.4.1",
"mkdirp": "^1.0.3",
"node-fetch": "^2.6.0",
"promisify-child-process": "^4.0.0",
"semver": "^7.1.1",
"shell-quote": "^1.7.2",
"vscode-languageserver-protocol": "3.16.0"
}
}