-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (101 loc) · 2.02 KB
/
package.json
File metadata and controls
102 lines (101 loc) · 2.02 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "latte",
"displayName": "LatteExtension",
"description": "Verify uniqueness in your java classes",
"version": "0.0.2",
"repository": {
"type": "git",
"url": "https://github.com/CatarinaGamboa/latte-vscode"
},
"engines": {
"vscode": "^1.96.0"
},
"languages": [
{
"id": "java"
}
],
"categories": [
"Other"
],
"keywords": [
"java",
"test",
"junit",
"testng",
"debug"
],
"activationEvents": [
"onLanguage:java"
],
"main": "./extension.js",
"contributes": {
"languages": [
{
"id": "java",
"extensions": [".java"],
"aliases": ["Java"]
}
],
"configuration": {
"type": "object",
"title": "Latte configuration",
"properties": {
"latte.maxNumberOfProblems": {
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"latte.trace.server": {
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VSCode and the liquidJavaServer service."
}
}
}
},
"views": {
"explorer": [
{
"id": "relatedFiles",
"name": "Related Files",
"when": "resourceLangId == java"
}
]
},
"commands": [
{
"command": "extension.showRelatedFiles",
"title": "Show Related Files"
}
],
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test"
},
"devDependencies": {
"@types/mkdirp": "^0.5.2",
"@types/node": "^12.12.0",
"@types/rimraf": "^2.0.2",
"@types/vscode": "^1.45.0",
"@typescript-eslint/eslint-plugin": "^4.16.0",
"@typescript-eslint/parser": "^4.16.0",
"eslint": "^7.21.0",
"typescript": "^4.2.2"
},
"dependencies": {
"ftp": "^0.3.10",
"get-port": "^5.1.1",
"jsonc-parser": "^0.4.2",
"minimist": "^1.2.7",
"mkdirp": "^0.5.1",
"rimraf": "^2.6.2",
"vscode-languageclient": "^3.1.0"
}
}