-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
151 lines (151 loc) · 3.98 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "cbmc-proof-debugger",
"displayName": "CBMC proof debugger",
"description": "Debug error traces produced by CBMC.",
"publisher": "model-checking",
"version": "1.0.1",
"repository": "https://github.com/model-checking/cbmc-proof-debugger",
"engines": {
"vscode": "^1.53.0"
},
"categories": [
"Debuggers"
],
"activationEvents": [
"onDebug",
"onCommand:proofDebugger.helloWorld",
"onCommand:proofDebugger.setTraceFolder",
"onCommand:proofDebugger.showTraceFolder",
"onCommand:proofDebugger.showTraceName",
"onCommand:traceView.refresh"
],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"panel": [
{
"id": "proof-debugger-trace-container",
"title": "Proof debugger",
"icon": "none"
}
]
},
"views": {
"proof-debugger-trace-container": [
{
"id": "proof-debugger-trace-view",
"name": "Traces"
}
]
},
"commands": [
{
"command": "proofDebugger.load",
"title": "CBMC proof debugger: Load extension"
},
{
"command": "proofDebugger.setTraceFolderDialog",
"title": "CBMC proof debugger: Set Trace Folder"
},
{
"command": "proofDebugger.showTraceFolder",
"title": "CBMC proof debugger: Show Trace Folder"
},
{
"command": "proofDebugger.showTraceName",
"title": "CBMC proof debugger: Show Trace Name"
},
{
"command": "traceView.refresh",
"title": "Load Traces"
}
],
"menus": {
"view/title": [
{
"command": "traceView.refresh",
"when": "view == proof-debugger-trace-view",
"group": "navigation"
}
]
},
"debuggers": [
{
"type": "proof-debugger",
"label": "CBMC Proof Debugger",
"program": "./out/proof-debugger-adapter.js",
"runtime": "node",
"languages": [
"c",
"rust"
],
"configurationAttributes": {
"launch": {
"required": [],
"properties": {
"stopOnEntry": {
"type": "boolean",
"description": "Automatically stop after launch.",
"default": true
},
"trace": {
"type": "boolean",
"description": "Enable logging of the Debug Adapter Protocol.",
"default": true
}
}
}
},
"initialConfigurations": [
{
"type": "proof-debugger",
"request": "launch",
"name": "CBMC Proof Debugger",
"stopOnEntry": true
}
],
"configurationSnippets": [
{
"label": "CBMC Proof Debugger: Launch",
"description": "A configuration for debugging an error trace produced by CBMC.",
"body": {
"type": "proof-debugger",
"request": "launch",
"name": "CBMC Proof Debugger",
"stopOnEntry": true
}
}
]
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.13",
"@types/vscode": "^1.53.0",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"@vscode/test-electron": "^2.1.3",
"console": "^0.7.2",
"eslint": "^7.32.0",
"glob": "^7.1.7",
"mocha": "^9.1.1",
"typescript": "^4.5.5",
"typescript-formatter": "^7.2.2",
"@vscode/vsce": "^2.6.3"
},
"dependencies": {
"@vscode/debugadapter": "^1.51.1",
"@vscode/debugprotocol": "^1.51.0",
"await-notify": "^1.0.1"
}
}