-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
139 lines (139 loc) · 5.38 KB
/
package.json
File metadata and controls
139 lines (139 loc) · 5.38 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
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
{
"name": "project-initializer",
"displayName": "Deprecated - Project Initializer by Red Hat",
"description": "Deprecated - A lightweight extension based on Red Hat launcher to generate quickstart projects using VSCode",
"version": "0.2.2",
"license": "EPL-2.0",
"publisher": "redhat",
"author": "Red Hat",
"icon": "icons/Project_Initializer.png",
"homepage": "https://github.com/redhat-developer/vscode-project-initializer/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/redhat-developer/vscode-project-initializer"
},
"engines": {
"vscode": "^1.52.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:project.initializer.generate",
"onCommand:project.initializer.generate.camelfuse",
"onCommand:project.initializer.generate.golang",
"onCommand:project.initializer.generate.nodejs",
"onCommand:project.initializer.generate.springboot",
"onCommand:project.initializer.generate.thorntail",
"onCommand:project.initializer.generate.vertx"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "project.initializer.generate",
"title": "Generate a project using Project Initializer",
"category": "Project"
},
{
"command": "project.initializer.generate.camelfuse",
"title": "Generate a Camel/Fuse project using Project Initializer",
"category": "Project"
},
{
"command": "project.initializer.generate.vertx",
"title": "Generate an Eclipse Vert.x project using Project Initializer",
"category": "Project"
},
{
"command": "project.initializer.generate.springboot",
"title": "Generate a Spring Boot project using Project Initializer",
"category": "Project"
},
{
"command": "project.initializer.generate.golang",
"title": "Generate a Go project using Project Initializer",
"category": "Project"
},
{
"command": "project.initializer.generate.nodejs",
"title": "Generate a NodeJS project using Project Initializer",
"category": "Project"
},
{
"command": "project.initializer.generate.thorntail",
"title": "Generate a Thorntail project using Project Initializer",
"category": "Project"
}
],
"configuration": {
"title": "Project initializer",
"properties": {
"project.initializer.endpointUrl": {
"default": "https://forge.api.openshift.io/api/",
"type": "string",
"pattern": "https?://.*/",
"scope": "window",
"description": "Project Initializer endpoint URL."
},
"project.initializer.defaultGroupId": {
"default": "io.openshift",
"type": "string",
"scope": "window",
"description": "Default value for Group Id."
},
"project.initializer.defaultArtifactId": {
"default": "booster",
"type": "string",
"scope": "window",
"description": "Default value for Artifact Id."
},
"project.initializer.defaultVersion": {
"default": "0.0.1-SNAPSHOT",
"type": "string",
"scope": "window",
"description": "Default value for Version."
},
"redhat.telemetry.enabled": {
"type": "boolean",
"default": null,
"markdownDescription": "Enable usage data and errors to be sent to Red Hat servers. Read our [privacy statement](https://developers.redhat.com/article/tool-data-collection).",
"scope": "window"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "npm run compile && node ./out/test/runTest.js",
"ui-test": "npm run compile && extest setup-and-run -i out/ui-test/allTestsSuite.js -c 1.69.2"
},
"devDependencies": {
"@types/chai": "^4.2.0",
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.5",
"@types/node": "^14.14.7",
"@types/request-promise-native": "^1.0.15",
"@types/vscode": "1.19.0",
"chai": "^4.2.0",
"glob": "^7.1.6",
"mocha": "^9.2.1",
"mocha-jenkins-reporter": "^0.4.1",
"tslint": "^5.17.0",
"typescript": "^4.5.2",
"vscode-extension-tester": "^4.2.4",
"vscode-test": "^1.6.1"
},
"dependencies": {
"@redhat-developer/vscode-redhat-telemetry": "0.2.0",
"@types/request": "^2.47.0",
"@types/yauzl": "^2.9.0",
"email-regex": "4.0.0",
"ip-regex": "4.3.0",
"request": "^2.47.0",
"request-promise-native": "^1.0.9",
"yauzl": "^2.10.0"
}
}