forked from microsoft/vscode-spring-initializr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
155 lines (155 loc) · 4.43 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "vscode-spring-initializr",
"displayName": "Spring Initializr Java Support",
"description": "A lightweight extension based on Spring Initializr to generate quick start Spring Boot Java projects.",
"version": "0.4.5",
"icon": "resources/logo.png",
"publisher": "vscjava",
"aiKey": "05fb8871-fbf0-488f-8453-a74cf0ca9b93",
"homepage": "https://github.com/Microsoft/vscode-spring-initializr/blob/v0.4.5/README.md",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-spring-initializr.git"
},
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:spring.initializr.maven-project",
"onCommand:spring.initializr.gradle-project",
"onCommand:spring.initializr.editStarters",
"onCommand:spring.initializr.createProject"
],
"main": "./dist/extension",
"contributes": {
"commands": [
{
"command": "spring.initializr.createProject",
"title": "Create a Spring Boot Project",
"category": "Spring Initializr"
},
{
"command": "spring.initializr.maven-project",
"title": "Generate a Maven Project",
"category": "Spring Initializr"
},
{
"command": "spring.initializr.gradle-project",
"title": "Generate a Gradle Project",
"category": "Spring Initializr"
},
{
"command": "spring.initializr.editStarters",
"title": "Edit starters",
"category": "Spring Initializr"
}
],
"menus": {
"commandPalette": [
{
"command": "spring.initializr.createProject",
"when": "never"
}
],
"editor/context": [
{
"when": "resourceFilename == pom.xml",
"command": "spring.initializr.editStarters",
"group": "SpringInitializr"
}
],
"explorer/context": [
{
"when": "resourceFilename == pom.xml",
"command": "spring.initializr.editStarters",
"group": "SpringInitializr"
}
]
},
"configuration": {
"title": "Spring Initializr",
"properties": {
"spring.initializr.serviceUrl": {
"default": [
"https://start.spring.io/"
],
"type": [
"string",
"array"
],
"pattern": "https?://.+",
"scope": "window",
"description": "Spring Initializr Service URL(s). If more than one url is specified, it requires you to select one every time you create a project."
},
"spring.initializr.defaultLanguage": {
"default": "",
"type": "string",
"enum": [
"",
"Java",
"Kotlin",
"Groovy"
],
"scope": "window",
"description": "Default language."
},
"spring.initializr.defaultGroupId": {
"default": "com.example",
"type": "string",
"scope": "window",
"description": "Default value for Group Id."
},
"spring.initializr.defaultArtifactId": {
"default": "demo",
"type": "string",
"scope": "window",
"description": "Default value for Artifact Id."
},
"spring.initializr.defaultPackaging": {
"default": "JAR",
"type": "string",
"enum": [
"",
"JAR",
"WAR"
],
"scope": "window",
"description": "Default packaging."
}
}
}
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"compile": "tsc -p ./",
"tslint": "tslint -t verbose src/*.ts",
"watch": "webpack --mode development --watch --info-verbosity verbose",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/fs-extra": "^5.0.5",
"@types/lodash": "^4.14.122",
"@types/md5": "^2.1.33",
"@types/mocha": "^2.2.48",
"@types/node": "^7.10.5",
"@types/xml2js": "^0.4.3",
"ts-loader": "^4.4.2",
"tslint": "^5.13.1",
"typescript": "^2.9.2",
"vscode": "^1.1.30",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"extract-zip": "^1.6.7",
"fs-extra": "^5.0.0",
"lodash": "^4.17.11",
"md5": "^2.2.1",
"vscode-extension-telemetry-wrapper": "^0.3.9",
"xml2js": "^0.4.19"
}
}