-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.89 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
117
118
119
{
"name": "hdlregression-by-hgb",
"displayName": "HDLRegression by HGB",
"description": "Run your HDLRegression tests from the sidebar",
"author": "Jakob Jungreuthmayer",
"publisher": "P2L2",
"license": "SEE LICENSE IN LICENSE",
"version": "1.0.0",
"icon": "img/hdlregression-by-hgb-logo.png",
"repository": {
"type": "git",
"url": "https://github.com/HSD-ESD/HDLRegression-by-HGB"
},
"engines": {
"vscode": "^1.59.0"
},
"categories": [
"Testing",
"Debuggers",
"Linters",
"Programming Languages",
"Other"
],
"keywords": [
"HDLRegression",
"test",
"testing",
"unit testing",
"verification",
"hdl",
"VHDL",
"vhdl",
"verilog",
"system verilog",
"test controller",
"test explorer",
"Hagenberg"
],
"activationEvents": [
"workspaceContains:**/${config:hdlregression-by-hgb.scriptname}",
"workspaceContains:**/*.vhd",
"onLanguage:vhdl",
"onLanguage:verilog",
"workspaceContains:**/*.v"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"type": "object",
"title": "HDLRegression by HGB",
"properties": {
"hdlregression-by-hgb.scriptname": {
"title": "Script-Name",
"description": "Default name for HDLRegression-Scripts",
"type": "string",
"default": "hr.py"
},
"hdlregression-by-hgb.python": {
"title": "Python executable",
"description": "Path to python executable",
"type": "string",
"default": "python"
},
"hdlregression-by-hgb.shellOptions": {
"description": "HDLRegression command line options when running tests.",
"type": "string",
"default": ""
},
"hdlregression-by-hgb.guiOptions": {
"description": "HDLRegression command line options when running GUI",
"type": "string",
"default": ""
}
}
},
"menus": {
"testing/item/context": []
}
},
"scripts": {
"clean": "shx rm -rf out",
"compile": "npm run clean && tsc -p ./",
"watch": "npm run build-prepare & tsc -watch -p ./",
"lint": "eslint src --ext ts",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/run_test.js",
"esbuild-base": "npm run clean && esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"esbuild-minify": "npm run esbuild-base -- --minify",
"vscode:prepublish": "npm run esbuild-base -- --sourcemap",
"deploy": "vsce publish && npx ovsx publish"
},
"dependencies": {
"tree-kill": "1.2.2",
"uuid-random": "1.3.0"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.0",
"@types/vscode": "^1.59.0",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.8",
"@vscode/vsce": "^2.15",
"esbuild": "^0.17.19",
"eslint": "^6.8.0",
"glob": "^7.1.6",
"mocha": "^7.1.1",
"npx": "^10.2.2",
"ovsx": "^0.8.3",
"shx": "^0.3.3",
"tslib": "^1.11.1",
"typescript": "^4.1.2",
"vscode-test": "^1.6.1"
}
}