-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 948 Bytes
/
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": "jest-lsp",
"description": "A language server for the Jest Testing Framework",
"author": "James Johnson",
"license": "MIT",
"version": "0.3.1",
"repository": {
"type": "git",
"url": "https://github.com/jjohnson1994/jest-lsp"
},
"keywords": [
"jest",
"testing",
"language server"
],
"main": "./dist/cli.js",
"bin": {
"jest-lsp": "./dist/cli.js"
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w"
},
"devDependencies": {
"@types/mocha": "^9.1.0",
"@types/node": "^14.17.0",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"mocha": "^9.2.1",
"typescript": "^4.6.3"
},
"dependencies": {
"jest-editor-support": "^30.0.2",
"vscode-languageserver": "^8.0.1",
"vscode-languageserver-textdocument": "^1.0.4",
"vscode-languageserver-types": "^3.17.1",
"vscode-uri": "^3.0.3"
}
}