-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.99 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.99 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
{
"name": "javalint",
"displayName": "javalint",
"description": "code style check tool extension for javalint",
"icon": "logo-2.png",
"version": "1.0.0",
"publisher": "craftslab",
"repository": {
"type": "Git",
"url": "https://github.com/devops-lintflow/javalint-vscode"
},
"engines": {
"vscode": "^1.21.0"
},
"categories": [
"Linters"
],
"keywords": [
"multi-root ready"
],
"activationEvents": [
"onLanguage:java",
"onCommand:javalint.runAnalysis"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "javalint.runAnalysis",
"title": "Analyze current file",
"category": "javalinter"
}
],
"configuration": {
"type": "object",
"title": "javalint",
"properties": {
"javalint.javalintPath": {
"type": "string",
"default": "/usr/local/lib/javalint.jar",
"description": "The path to the javalint library. If not set, the default location will be used."
},
"javalint.languages": {
"type": "array",
"default": [
"java"
],
"description": "The allowed vscode language identifiers that javalint will check."
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.40",
"mocha": "^2.3.3",
"typescript": "^3.9.7",
"vscode": "^1.0.0"
},
"dependencies": {
"lodash": "^4.17.4",
"vsce": "^2.9.1"
}
}