-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
90 lines (89 loc) · 2.37 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
{
"name": "mp-rest-client-generator-vscode-ext",
"displayName": "Generator for MicroProfile Rest Client",
"description": "Generate a Java MicroProfile REST Client using the OpenAPI Generator",
"version": "0.2.0",
"publisher": "MicroProfile-Community",
"license": "EPL-2.0",
"preview": true,
"repository": {
"type": "git",
"url": "https://github.com/MicroShed/mp-rest-client-generator-vscode-ext"
},
"engines": {
"vscode": "^1.88.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"Eclipse",
"Java",
"MicroProfile",
"Cloud Native",
"Microservices"
],
"icon": "images/microprofile-logo.png",
"galleryBanner": {
"color": "#1d2f42",
"theme": "dark"
},
"homepage": "https://github.com/MicroShed/mp-rest-client-generator-vscode-ext/README.md",
"bugs": {
"url": "https://github.com/MicroShed/mp-rest-client-generator-vscode-ext/issues"
},
"activationEvents": [
"onCommand:microprofile.restclient.generate"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "microprofile.restclient.generate",
"title": "Generate a MicroProfile REST Client",
"category": "MicroProfile"
}
],
"menus": {
"explorer/context": [
{
"command": "microprofile.restclient.generate",
"group": "microprofile"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.6",
"@types/node": "18.11.9",
"@types/node-fetch": "^2.6.11",
"@types/vscode": "^1.88.0",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@vscode/test-cli": "^0.0.8",
"@vscode/test-electron": "^2.3.9",
"eslint": "^8.57.0",
"typescript": "^5.4.5",
"@types/chai": "^4.3.15",
"chai": "^4.4.1",
"mocha": "^10.4.0",
"@types/glob": "^7.2.0",
"glob": "^7.2.0",
"minimatch": "5.1.6"
},
"dependencies": {
"@openapitools/openapi-generator-cli": "^2.13.4",
"fs-extra": "^11.2.0",
"node-fetch": "2.7.0"
}
}