-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
116 lines (116 loc) · 2.95 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
{
"name": "sonarqube-status",
"displayName": "SonarQube Project Status",
"description": "Get the status of your project including the Build status, Static code analysis statuses and more...",
"version": "1.2.0",
"engines": {
"vscode": "^1.61.0"
},
"categories": [
"Other"
],
"author": {
"name": "Adithya Sreyaj",
"email": "[email protected]",
"url": "https://adi.so"
},
"icon": "images/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/adisreyaj/vscode-sonarqube-status.git"
},
"publisher": "adisreyaj",
"keywords": [
"sonarqube",
"sonarcloud",
"static code analyzer",
"sonar scanner result",
"code coverage"
],
"activationEvents": [
"onCommand:sonarqubeStatus.get",
"onCommand:sonarqubeStatus.refresh",
"onView:sonarqubeStatus.quickInfo"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "sonarqubeStatus.get",
"title": "SonarQube: Get Report"
},
{
"command": "sonarqubeStatus.refresh",
"title": "Refresh",
"icon": {
"light": "images/light/refresh.svg",
"dark": "images/dark/refresh.svg"
}
}
],
"viewsContainers": {
"activitybar": [
{
"id": "sonarqubeStatus",
"title": "SonarQube Status",
"icon": "images/sonarqube.svg"
}
]
},
"views": {
"sonarqubeStatus": [
{
"id": "sonarqubeStatus.quickInfo",
"type": "webview",
"name": "Quick Info"
}
]
},
"menus": {
"view/title": [
{
"command": "sonarqubeStatus.refresh",
"when": "view == sonarqubeStatus.quickInfo",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"compile": "webpack --mode none",
"watch": "webpack --mode none --watch",
"postinstall": "node ./node_modules/vscode/bin/install",
"test-compile": "tsc -p ./"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/humanize-duration": "^3.25.1",
"@types/lodash-es": "^4.17.6",
"@types/mocha": "^2.2.42",
"@types/node": "^10.17.60",
"@types/vscode": "^1.61.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"copy-webpack-plugin": "^9.0.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.2",
"prettier": "^2.6.2",
"ts-loader": "^5.4.5",
"typescript": "^4.4.4",
"vscode-test": "^1.6.1",
"webpack": "^5.58.2",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"fs-extra": "^10.0.0",
"humanize-duration": "^3.27.0",
"lodash-es": "^4.17.21",
"millify": "^4.0.0",
"node-fetch": "^3.1.1",
"sonarqube-sdk": "^0.3.0"
}
}