-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.13 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.13 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
{
"name": "measuresoftgram",
"displayName": "MeasureSoftGram",
"description": "Análise multidimensional da qualidade de software, direto no VS Code.",
"version": "1.0.2",
"publisher": "MeasureSoftGram",
"license": "AGPL-3.0",
"homepage": "https://msgram.lappis.rocks/",
"repository": {
"type": "git",
"url": "https://github.com/fga-eps-mds/MeasureSoftGram-Plugin"
},
"bugs": {
"url": "https://github.com/fga-eps-mds/MeasureSoftGram-Plugin/issues"
},
"icon": "assets/icon.png",
"galleryBanner": {
"color": "#1e1e2e",
"theme": "dark"
},
"engines": {
"vscode": "^1.120.0"
},
"categories": [
"Other",
"Visualization"
],
"keywords": [
"metrics",
"quality",
"software quality",
"iso 25010",
"measuresoftgram",
"msgram",
"maintainability",
"reliability",
"static analysis",
"sonarqube",
"release quality",
"lappis",
"unb"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "msgram-sidebar",
"title": "MeasureSoftGram",
"icon": "assets/icon.svg"
}
]
},
"views": {
"msgram-sidebar": [
{
"type": "webview",
"id": "msgram.sidebarView",
"name": "Measure"
}
]
},
"commands": [
{
"command": "msgram.run",
"title": "Abrir MeasureSoftGram (Panel)",
"icon": "$(graph)",
"category": "MeasureSoftGram"
}
],
"menus": {
"commandPalette": [
{
"command": "msgram.run"
}
],
"view/title": [
{
"command": "msgram.run",
"when": "view == msgram.sidebarView",
"group": "navigation"
}
]
}
},
"scripts": {
"install:all": "npm install && cd webview-ui && npm install",
"start:webview": "cd webview-ui && npm run start",
"build:webview": "cd webview-ui && npm run build",
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test",
"test:unit": "npm run compile && mocha --ui tdd --timeout 10000 --require './out/tests/vscode.mock.js' 'out/tests/**/*.test.js'",
"test:coverage": "npm run compile && c8 --reporter=lcov --reporter=text --src src --exclude 'out/tests/**' --exclude '.mocharc.cjs' mocha --ui tdd --timeout 10000 --require './out/tests/vscode.mock.js' 'out/tests/**/*.test.js'",
"test:webview-run": "cd webview-ui && npm run test:run",
"test:webview-watch": "cd webview-ui && npm run test:watch",
"test:webview-coverage": "cd webview-ui && npm run test:coverage",
"test:all": "npm run test:webview-run && npm test"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "22.x",
"@types/vscode": "^1.120.0",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2",
"c8": "^10.1.3",
"eslint": "^9.39.3",
"mocha": "^11.7.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
}
}