-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 3.9 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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "make-java-great-again",
"displayName": "Make Java Great Again!",
"publisher": "DiogoTheCoder",
"description": "Make Java Great Again! Refactoring to Functional, is a dissertation-based project supervised by @BrunelCS and Dr Rumyana Neykova, who's sole aim is to increase the usage of functional paradigms in Java and developer's confidence in using these paradigms.",
"version": "0.0.1",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git://github.com/DiogoTheCoder/make-java-great-again.git"
},
"engines": {
"vscode": "^1.53.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:java"
],
"main": "./out/src/extension.js",
"scripts": {
"vscode:prepublish": "yarn run build && yarn run test",
"compile": "tsc -p ./",
"build": "mvn clean install",
"lint": "eslint --fix \"**/*.{js,ts,tsx}\"",
"test": "sh test.sh",
"watch": "tsc -watch -p ./ "
},
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.2",
"@types/prettier": "^2.3.2",
"@types/vscode": "^1.59.0",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"glob": "^7.1.7",
"mocha": "^9.1.1",
"string-hex": "^1.0.0",
"typescript": "^4.4.2",
"vscode-test": "^1.6.1"
},
"dependencies": {
"prettier": "^2.3.2",
"prettier-plugin-java": "^1.3.1",
"vscode-languageclient": "6.1.3"
},
"contributes": {
"commands": [
{
"command": "make-java-great-again.configure",
"category": "Make Java Great Again",
"title": "Configure"
},
{
"command": "make-java-great-again.refactorFile",
"category": "Make Java Great Again",
"title": "Refactor File"
},
{
"command": "make-java-great-again.displaySyntaxTree",
"category": "Make Java Great Again",
"title": "Display Simple Abstract Syntax Tree"
}
],
"languages": [
{
"id": "java",
"aliases": [
"Java",
"java"
],
"extensions": [
".java",
".class"
],
"configuration": "./out/src/syntaxes/language-configuration.json"
}
],
"grammars": [
{
"language": "java",
"scopeName": "source.java",
"path": "./out/src/syntaxes/java.tmLanguage.json"
}
],
"configuration": {
"title": "Make Java Great Again",
"properties": {
"java.abstractSyntaxTree.showNodeType": {
"type": "boolean",
"default": false,
"description": "Show Node Types in Abstract Syntax Tree"
},
"java.refactor.reduce.operators": {
"type": "array",
"markdownDescription": "The operators used by the Language Server to help determine whether or not to refactor to *Reduce*.\n\nSupported:\n\nASSIGN: **=**, PLUS: **+=**, MINUS: **-=**, MULTIPLY: ***=**, DIVIDE: **/=**, REMAINDER: **%=**\n\nBINARY_AND: **&=**, BINARY_OR: **|=**, XOR: **^=**\n\nLEFT_SHIFT: **<<=**, SIGNED_RIGHT_SHIFT: **>>=**, UNSIGNED_RIGHT_SHIFT: **>>>=**\n\n",
"default": [
"PLUS",
"MINUS",
"MULTIPLY",
"DIVIDE"
],
"items": {
"type": "string",
"properties": {
"name": {
"type": "string",
"description": "Operator"
}
}
}
},
"java.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "verbose",
"description": "Traces the communication between VS Code and the Language Server."
}
}
}
}
}