-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
82 lines (82 loc) · 2.13 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
{
"name": "mp-starter-vscode-ext",
"displayName": "MicroProfile Starter",
"description": "Generate Java microservice Maven projects using MicroProfile",
"version": "0.2.9",
"publisher": "MicroProfile-Community",
"preview": true,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/MicroShed/mp-starter-vscode-ext"
},
"engines": {
"vscode": "^1.35.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"Eclipse",
"Java",
"MicroProfile",
"Cloud Native",
"Microservices"
],
"icon": "images/microprofile-logo.png",
"galleryBanner": {
"color": "#1d2f42",
"theme": "dark"
},
"activationEvents": [
"onCommand:extension.microProfileStarter"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "extension.microProfileStarter",
"category": "MicroProfile",
"title": "Generate a new MicroProfile starter project"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "webpack --mode production",
"watch": "webpack --mode development --watch",
"test-compile": "tsc -p ./",
"pretest": "npm run test-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/adm-zip": "^0.4.32",
"@types/chai": "^4.2.8",
"@types/extract-zip": "^1.6.2",
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.7",
"@types/node": "^10.12.21",
"@types/node-fetch": "^2.5.4",
"@types/vscode": "^1.35.0",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"chai": "^4.2.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"glob": "^7.1.5",
"mocha": "^9.2.2",
"prettier": "^1.19.1",
"ts-loader": "^8.0.5",
"typescript": "^3.3.1",
"vscode-test": "^1.3.0",
"webpack": "^5.1.3",
"webpack-cli": "^4.1.0"
},
"dependencies": {
"adm-zip": "^0.4.14",
"node-fetch": "^2.6.1"
}
}