This repository has been archived by the owner on Jan 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
196 lines (196 loc) · 5.18 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
{
"name": "perl-debug",
"displayName": "Perl Debug",
"version": "0.2.4",
"publisher": "mortenhenriksen",
"description": "Perl debug adapter for VS Code.",
"author": {
"name": "Morten Henriksen",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"vscode": ">=1.1.10",
"node": ">=8.0.0"
},
"icon": "images/vscode-perl-debug.png",
"categories": [
"Debuggers"
],
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/raix/vscode-perl-debug.git"
},
"bugs": {
"url": "https://github.com/raix/vscode-perl-debug/issues"
},
"release": {
"verifyConditions": [
"semantic-release-vsce",
"@semantic-release/github"
],
"getLastRelease": "semantic-release-vsce",
"publish": [
{
"path": "semantic-release-vsce",
"packageVsix": "mortenhenriksen.perl-debug.vsix"
},
{
"path": "@semantic-release/github",
"assets": "mortenhenriksen.perl-debug.vsix"
}
]
},
"dependencies": {
"await-notify": "1.0.1",
"vscode-debugadapter": "1.19.0",
"vscode-debugprotocol": "1.19.0"
},
"devDependencies": {
"@types/es6-promise": "0.0.32",
"@types/jest": "^22.1.2",
"@types/node": "7.0.43",
"concurrently": "3.4.0",
"jest": "^22.2.2",
"semantic-release": "10.0.1",
"semantic-release-vsce": "0.1.4",
"ts-jest": "^22.0.3",
"tslint": "5.8.0",
"typescript": "2.7.1",
"vscode": "1.1.10",
"vscode-debugadapter-testsupport": "1.19.0"
},
"scripts": {
"prepublish": "tsc",
"compile": "tsc",
"tslint": "tslint ./src/**/*.ts",
"watch": "tsc -w",
"test": "jest",
"test:w": "jest --watch",
"postinstall": "node ./node_modules/vscode/bin/install",
"test2": "cd src/tests && electron-mocha ./test.js",
"publish:vsce": "./publish_vsce.sh",
"semantic-release": "semantic-release"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "/src/tests/.*.test.ts$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"main": "./out/extension",
"activationEvents": [
"onCommand:extension.perl-debug.provideInitialConfigurations"
],
"contributes": {
"breakpoints": [
{
"language": "perl"
}
],
"debuggers": [
{
"type": "perl",
"label": "Perl Debug",
"program": "./out/perlDebug.js",
"runtime": "node",
"languages": [
"perl"
],
"configurationAttributes": {
"launch": {
"required": [
"root",
"program"
],
"properties": {
"exec": {
"type": "string",
"description": "Perl executable.",
"default": "perl"
},
"execArgs": {
"type": "array",
"description": "List of arguments passed on to the executable.",
"default": []
},
"root": {
"type": "string",
"description": "Workspace root.",
"default": "${workspaceFolder}/"
},
"program": {
"type": "string",
"description": "Absolute path to perl file.",
"default": "${workspaceFolder}/${relativeFile}"
},
"stopOnEntry": {
"type": "boolean",
"description": "Automatically stop after launch.",
"default": true
},
"inc": {
"type": "array",
"description": "List of include directories.",
"default": []
},
"args": {
"type": "array",
"description": "List of program arguments.",
"default": []
},
"env": {
"type": "object",
"description": "Environment variables when debugging",
"default": {}
},
"trace": {
"type": "boolean",
"description": "Enable logging for the Debug Adapter Protocol",
"default": false
},
"port": {
"type": "number",
"description": "Port to listen for remote debuggers.",
"default": 5000
}
}
}
},
"initialConfigurations": [
{
"type": "perl",
"request": "launch",
"name": "Perl-Debug local",
"program": "${workspaceFolder}/${relativeFile}",
"exec": "perl",
"execArgs": [],
"root": "${workspaceRoot}/",
"inc": [],
"args": [],
"env": {},
"stopOnEntry": true
},
{
"type": "perl",
"request": "launch",
"name": "Perl-Debug remote",
"program": "${workspaceFolder}/${relativeFile}",
"root": "${workspaceRoot}/",
"stopOnEntry": true,
"port": 5000
}
]
}
]
}
}