-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
128 lines (128 loc) · 3.24 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
{
"name": "cdt-amalgamator",
"description": "Amalgamator Debug Adapter from Eclipse CDT",
"version": "0.0.11",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publisher": "Eclipse CDT",
"author": {
"name": "Jonah Graham",
"email": "[email protected]"
},
"license": "EPL-2.0",
"engines": {
"vscode": "^1.61.0"
},
"categories": [
"Debuggers"
],
"scripts": {
"build": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write .",
"format-check": "prettier --check .",
"typecheck": "tsc -p tsconfig.json --noEmit",
"watch": "tsc -w",
"test": "cross-env JUNIT_REPORT_PATH=test-reports/integration.xml JUNIT_REPORT_STACK=1 JUNIT_REPORT_PACKAGES=1 mocha --reporter mocha-jenkins-reporter dist/integration-tests/*.spec.js"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/deep-equal-in-any-order": "^1.0.1",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "^14.18.17",
"@types/vscode": "^1.76.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"@vscode/vsce": "^2.18.0",
"cdt-gdb-adapter": "^0.0.15-next",
"chai": "^4.3.7",
"cross-env": "^7.0.3",
"deep-equal-in-any-order": "^1.1.15",
"esbuild": "^0.14.14",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"events": "^3.3.0",
"mocha": "^9.2.0",
"mocha-jenkins-reporter": "^0.4.8",
"prettier": "2.8.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"contributes": {
"breakpoints": [
{
"language": "c"
},
{
"language": "cpp"
}
],
"debuggers": [
{
"type": "amalgamator",
"label": "CDT Amalgamator",
"program": "./dist/debugAdapter.js",
"runtime": "node",
"configurationAttributes": {
"launch": {
"required": [],
"properties": {}
},
"attach": {
"required": [],
"properties": {}
}
},
"initialConfigurations": [
{
"type": "amalgamator",
"request": {
"type": "string",
"enum": [
"launch",
"attach"
]
},
"name": "Amalgamator Example"
}
],
"configurationSnippets": [
{
"label": "Amalgamator: Launch",
"description": "A new configuration for amalgamating multiple debug adapter launches.",
"body": {
"type": "amalgamator",
"request": {
"type": "string",
"enum": [
"launch",
"attach"
]
},
"name": "Amalgamator Example"
}
}
]
}
]
},
"extensionDependencies": [
"eclipse-cdt.cdt-gdb-vscode"
],
"files": [
"NOTICE",
"LICENSE",
"README.md",
"CONTRIBUTING.md",
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"src/*.ts"
],
"dependencies": {
"@vscode/debugadapter": "^1.59.0",
"@vscode/debugadapter-testsupport": "^1.59.0",
"@vscode/debugprotocol": "^1.59.0"
}
}