789 lines
No EOL
22 KiB
JSON
789 lines
No EOL
22 KiB
JSON
{
|
|
"name": "debug",
|
|
"displayName": "Native Debug",
|
|
"description": "GDB, LLDB & Mago-MI Debugger support for VSCode",
|
|
"keywords": [
|
|
"gdb",
|
|
"lldb",
|
|
"mago-mi",
|
|
"native",
|
|
"debug"
|
|
],
|
|
"version": "0.15.0",
|
|
"publisher": "webfreak",
|
|
"icon": "images/icon-plain.svg",
|
|
"engines": {
|
|
"vscode": "^1.8.0"
|
|
},
|
|
"main": "./out/src/frontend/extension",
|
|
"activationEvents": [
|
|
"onCommand:code-debug.examineMemoryLocation",
|
|
"onCommand:code-debug.getFileNameNoExt",
|
|
"onCommand:code-debug.getFileBasenameNoExt"
|
|
],
|
|
"categories": [
|
|
"Debuggers"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/WebFreak001/code-debug.git"
|
|
},
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "code-debug.examineMemoryLocation",
|
|
"title": "Code-Debug: Examine memory location"
|
|
}
|
|
],
|
|
"debuggers": [
|
|
{
|
|
"type": "gdb",
|
|
"extensions": [],
|
|
"program": "./out/src/gdb.js",
|
|
"runtime": "node",
|
|
"label": "GDB",
|
|
"enableBreakpointsFor": {
|
|
"languageIds": [
|
|
"c",
|
|
"cpp",
|
|
"d",
|
|
"objective-c",
|
|
"fortran",
|
|
"fortran-modern",
|
|
"rust",
|
|
"pascal",
|
|
"objectpascal",
|
|
"ada",
|
|
"nim",
|
|
"arm",
|
|
"asm",
|
|
"vala"
|
|
]
|
|
},
|
|
"variables": {
|
|
"FileBasenameNoExt": "code-debug.getFileBasenameNoExt",
|
|
"FileNameNoExt": "code-debug.getFileNameNoExt"
|
|
},
|
|
"configurationAttributes": {
|
|
"launch": {
|
|
"required": [
|
|
"target"
|
|
],
|
|
"properties": {
|
|
"target": {
|
|
"type": "string",
|
|
"description": "Path of executable"
|
|
},
|
|
"arguments": {
|
|
"type": "string",
|
|
"description": "Arguments to append after the executable. You can also use pipes."
|
|
},
|
|
"terminal": {
|
|
"type": "string",
|
|
"description": "Leave this field undefined to keep program output in the vscode console at the bottom. If this is set to empty string the program will spawn in a new console using x-terminal-emulator on linux, otherwise with the specified terminal. On windows setting this to an empty string spawns the program in a console, but no other console is supported."
|
|
},
|
|
"cwd": {
|
|
"type": "string",
|
|
"description": "Path of project"
|
|
},
|
|
"gdbpath": {
|
|
"type": "string",
|
|
"description": "Path to the gdb executable or the command if in PATH",
|
|
"default": "gdb"
|
|
},
|
|
"debugger_args": {
|
|
"type": "array",
|
|
"description": "Additional arguments to pass to GDB",
|
|
"default": []
|
|
},
|
|
"printCalls": {
|
|
"type": "boolean",
|
|
"description": "Prints all GDB calls to the console",
|
|
"default": false
|
|
},
|
|
"showDevDebugOutput": {
|
|
"type": "boolean",
|
|
"description": "Prints all GDB responses to the console",
|
|
"default": false
|
|
},
|
|
"autorun": {
|
|
"type": "array",
|
|
"description": "GDB commands to run when starting to debug",
|
|
"default": []
|
|
},
|
|
"ssh": {
|
|
"required": [
|
|
"host",
|
|
"cwd",
|
|
"user"
|
|
],
|
|
"type": "object",
|
|
"description": "If this is set then the extension will connect to an ssh host and run GDB there",
|
|
"properties": {
|
|
"host": {
|
|
"type": "string",
|
|
"description": "Remote host name/ip to connect to"
|
|
},
|
|
"cwd": {
|
|
"type": "string",
|
|
"description": "Path of project on the remote"
|
|
},
|
|
"port": {
|
|
"type": "number",
|
|
"description": "Remote port number",
|
|
"default": 22
|
|
},
|
|
"user": {
|
|
"type": "string",
|
|
"description": "Username to connect as"
|
|
},
|
|
"password": {
|
|
"type": "string",
|
|
"description": "Plain text password (unsafe; if possible use keyfile instead)"
|
|
},
|
|
"keyfile": {
|
|
"type": "string",
|
|
"description": "Absolute path to private key"
|
|
},
|
|
"forwardX11": {
|
|
"type": "boolean",
|
|
"description": "If true, the server will redirect x11 to the local host",
|
|
"default": true
|
|
},
|
|
"x11port": {
|
|
"type": "number",
|
|
"description": "Port to redirect X11 data to (by default port = display + 6000)",
|
|
"default": 6000
|
|
},
|
|
"x11host": {
|
|
"type": "string",
|
|
"description": "Hostname/ip to redirect X11 data to",
|
|
"default": "localhost"
|
|
},
|
|
"remotex11screen": {
|
|
"type": "number",
|
|
"description": "Screen to start the application on the remote side",
|
|
"default": 0
|
|
},
|
|
"bootstrap": {
|
|
"type": "string",
|
|
"description": "Content will be executed on the SSH host before the debugger call."
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"attach": {
|
|
"required": [
|
|
"target"
|
|
],
|
|
"properties": {
|
|
"target": {
|
|
"type": "string",
|
|
"description": "PID of running program or program name or connection arguments (eg :2345) if remote is true"
|
|
},
|
|
"remote": {
|
|
"type": "boolean",
|
|
"description": "If true this will connect to a gdbserver instead of attaching to a PID",
|
|
"default": false
|
|
},
|
|
"printCalls": {
|
|
"type": "boolean",
|
|
"description": "Prints all GDB calls to the console",
|
|
"default": false
|
|
},
|
|
"showDevDebugOutput": {
|
|
"type": "boolean",
|
|
"description": "Prints all GDB responses to the console",
|
|
"default": false
|
|
},
|
|
"executable": {
|
|
"type": "string",
|
|
"description": "Path of executable for debugging symbols"
|
|
},
|
|
"gdbpath": {
|
|
"type": "string",
|
|
"description": "Path to the gdb executable or the command if in PATH",
|
|
"default": "gdb"
|
|
},
|
|
"debugger_args": {
|
|
"type": "array",
|
|
"description": "Additional arguments to pass to GDB",
|
|
"default": []
|
|
},
|
|
"cwd": {
|
|
"type": "string",
|
|
"description": "Path of project",
|
|
"default": "${workspaceRoot}"
|
|
},
|
|
"autorun": {
|
|
"type": "array",
|
|
"description": "GDB commands to run when starting to debug",
|
|
"default": []
|
|
},
|
|
"ssh": {
|
|
"required": [
|
|
"host",
|
|
"cwd",
|
|
"user"
|
|
],
|
|
"type": "object",
|
|
"description": "If this is set then the extension will connect to an ssh host and run GDB there",
|
|
"properties": {
|
|
"host": {
|
|
"type": "string",
|
|
"description": "Remote host name/ip to connect to"
|
|
},
|
|
"cwd": {
|
|
"type": "string",
|
|
"description": "Path of project on the remote"
|
|
},
|
|
"port": {
|
|
"type": "number",
|
|
"description": "Remote port number",
|
|
"default": 22
|
|
},
|
|
"user": {
|
|
"type": "string",
|
|
"description": "Username to connect as"
|
|
},
|
|
"password": {
|
|
"type": "string",
|
|
"description": "Plain text password (unsafe; if possible use keyfile instead)"
|
|
},
|
|
"keyfile": {
|
|
"type": "string",
|
|
"description": "Absolute path to private key"
|
|
},
|
|
"forwardX11": {
|
|
"type": "boolean",
|
|
"description": "If true, the server will redirect x11 to the local host",
|
|
"default": true
|
|
},
|
|
"x11port": {
|
|
"type": "number",
|
|
"description": "Port to redirect X11 data to (by default port = display + 6000)",
|
|
"default": 6000
|
|
},
|
|
"x11host": {
|
|
"type": "string",
|
|
"description": "Hostname/ip to redirect X11 data to",
|
|
"default": "localhost"
|
|
},
|
|
"remotex11screen": {
|
|
"type": "number",
|
|
"description": "Screen to start the application on the remote side",
|
|
"default": 0
|
|
},
|
|
"bootstrap": {
|
|
"type": "string",
|
|
"description": "Content will be executed on the SSH host before the debugger call."
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"initialConfigurations": [
|
|
{
|
|
"name": "Debug",
|
|
"type": "gdb",
|
|
"request": "launch",
|
|
"target": "./bin/executable",
|
|
"cwd": "${workspaceRoot}"
|
|
}
|
|
],
|
|
"configurationSnippets": [
|
|
{
|
|
"label": "GDB: Launch Program",
|
|
"description": "Starts the program using gdb",
|
|
"body": {
|
|
"type": "gdb",
|
|
"request": "launch",
|
|
"name": "${2:Launch Program}",
|
|
"target": "${1:./bin/executable}",
|
|
"cwd": "^\"\\${workspaceRoot}\""
|
|
}
|
|
},
|
|
{
|
|
"label": "GDB: Attach to PID",
|
|
"description": "Attaches to a running program pid using gdb",
|
|
"body": {
|
|
"type": "gdb",
|
|
"request": "launch",
|
|
"name": "${2:Attach to PID}",
|
|
"target": "${1:[PID]}",
|
|
"cwd": "^\"\\${workspaceRoot}\""
|
|
}
|
|
},
|
|
{
|
|
"label": "GDB: Connect to gdbserver",
|
|
"description": "Connects to a gdbserver for debugging",
|
|
"body": {
|
|
"type": "gdb",
|
|
"request": "attach",
|
|
"name": "${3:Attach to gdbserver}",
|
|
"executable": "${1:./bin/executable}",
|
|
"target": ":${2:2345}",
|
|
"remote": true,
|
|
"cwd": "^\"\\${workspaceRoot}\""
|
|
}
|
|
},
|
|
{
|
|
"label": "GDB: Launch over SSH",
|
|
"description": "Remotely starts the program using gdb",
|
|
"body": {
|
|
"type": "gdb",
|
|
"request": "launch",
|
|
"name": "${6:Launch Program (SSH)}",
|
|
"target": "${1:./bin/executable}",
|
|
"cwd": "^\"\\${workspaceRoot}\"",
|
|
"ssh": {
|
|
"host": "${2:127.0.0.1}",
|
|
"cwd": "${3:/home/remote_user/project/}",
|
|
"keyfile": "${4:/home/my_user/.ssh/id_rsa}",
|
|
"user": "${5:remote_user}"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"label": "GDB: Launch GUI over SSH with X11 forwarding",
|
|
"description": "Remotely starts the program using gdb with X11 forwarding",
|
|
"body": {
|
|
"type": "gdb",
|
|
"request": "launch",
|
|
"name": "${6:Launch Program (SSH + X11)}",
|
|
"target": "${1:./bin/executable}",
|
|
"cwd": "^\"\\${workspaceRoot}\"",
|
|
"ssh": {
|
|
"host": "${2:127.0.0.1}",
|
|
"cwd": "${3:/home/remote_user/project/}",
|
|
"keyfile": "${4:/home/my_user/.ssh/id_rsa}",
|
|
"user": "${5:remote_user}",
|
|
"forwardX11": true,
|
|
"x11host": "localhost",
|
|
"x11port": 6000
|
|
}
|
|
}
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"type": "lldb-mi",
|
|
"extensions": [],
|
|
"program": "./out/src/lldb.js",
|
|
"runtime": "node",
|
|
"label": "LLDB",
|
|
"variables": {
|
|
"FileBasenameNoExt": "code-debug.getFileBasenameNoExt",
|
|
"FileNameNoExt": "code-debug.getFileNameNoExt"
|
|
},
|
|
"enableBreakpointsFor": {
|
|
"languageIds": [
|
|
"c",
|
|
"ada",
|
|
"cpp",
|
|
"cobol",
|
|
"fortran",
|
|
"pascal",
|
|
"modula",
|
|
"java",
|
|
"pli",
|
|
"objective-c",
|
|
"objective-cpp",
|
|
"d",
|
|
"python",
|
|
"opencl",
|
|
"modula3",
|
|
"haskell",
|
|
"ocaml",
|
|
"swift",
|
|
"julia",
|
|
"dylan",
|
|
"mips",
|
|
"renderscript",
|
|
"vala"
|
|
]
|
|
},
|
|
"configurationAttributes": {
|
|
"launch": {
|
|
"required": [
|
|
"target"
|
|
],
|
|
"properties": {
|
|
"target": {
|
|
"type": "string",
|
|
"description": "Path of executable"
|
|
},
|
|
"arguments": {
|
|
"type": "string",
|
|
"description": "Arguments to append after the executable"
|
|
},
|
|
"cwd": {
|
|
"type": "string",
|
|
"description": "Path of project"
|
|
},
|
|
"lldbmipath": {
|
|
"type": "string",
|
|
"description": "Path to the lldb-mi executable or the command if in PATH",
|
|
"default": "lldb-mi"
|
|
},
|
|
"debugger_args": {
|
|
"type": "array",
|
|
"description": "Additional arguments to pass to LLDB",
|
|
"default": []
|
|
},
|
|
"printCalls": {
|
|
"type": "boolean",
|
|
"description": "Prints all lldb calls to the console",
|
|
"default": false
|
|
},
|
|
"showDevDebugOutput": {
|
|
"type": "boolean",
|
|
"description": "Prints all lldb responses to the console",
|
|
"default": false
|
|
},
|
|
"autorun": {
|
|
"type": "array",
|
|
"description": "lldb commands to run when starting to debug",
|
|
"default": []
|
|
},
|
|
"ssh": {
|
|
"required": [
|
|
"host",
|
|
"cwd",
|
|
"user"
|
|
],
|
|
"type": "object",
|
|
"description": "If this is set then the extension will connect to an ssh host and run lldb there",
|
|
"properties": {
|
|
"host": {
|
|
"type": "string",
|
|
"description": "Remote host name/ip to connect to"
|
|
},
|
|
"cwd": {
|
|
"type": "string",
|
|
"description": "Path of project on the remote"
|
|
},
|
|
"port": {
|
|
"type": "number",
|
|
"description": "Remote port number",
|
|
"default": 22
|
|
},
|
|
"user": {
|
|
"type": "string",
|
|
"description": "Username to connect as"
|
|
},
|
|
"password": {
|
|
"type": "string",
|
|
"description": "Plain text password (unsafe; if possible use keyfile instead)"
|
|
},
|
|
"keyfile": {
|
|
"type": "string",
|
|
"description": "Absolute path to private key"
|
|
},
|
|
"forwardX11": {
|
|
"type": "boolean",
|
|
"description": "If true, the server will redirect x11 to the local host",
|
|
"default": true
|
|
},
|
|
"x11port": {
|
|
"type": "number",
|
|
"description": "Port to redirect X11 data to (by default port = display + 6000)",
|
|
"default": 6000
|
|
},
|
|
"x11host": {
|
|
"type": "string",
|
|
"description": "Hostname/ip to redirect X11 data to",
|
|
"default": "localhost"
|
|
},
|
|
"remotex11screen": {
|
|
"type": "number",
|
|
"description": "Screen to start the application on the remote side",
|
|
"default": 0
|
|
},
|
|
"bootstrap": {
|
|
"type": "string",
|
|
"description": "Content will be executed on the SSH host before the debugger call."
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"attach": {
|
|
"required": [
|
|
"target"
|
|
],
|
|
"properties": {
|
|
"target": {
|
|
"type": "string",
|
|
"description": "PID of running program or program name"
|
|
},
|
|
"printCalls": {
|
|
"type": "boolean",
|
|
"description": "Prints all LLDB calls to the console",
|
|
"default": false
|
|
},
|
|
"showDevDebugOutput": {
|
|
"type": "boolean",
|
|
"description": "Prints all LLDB responses to the console",
|
|
"default": false
|
|
},
|
|
"executable": {
|
|
"type": "string",
|
|
"description": "Path of executable for debugging symbols"
|
|
},
|
|
"lldbmipath": {
|
|
"type": "string",
|
|
"description": "Path to the lldb-mi executable or the command if in PATH",
|
|
"default": "lldb-mi"
|
|
},
|
|
"debugger_args": {
|
|
"type": "array",
|
|
"description": "Additional arguments to pass to LLDB",
|
|
"default": []
|
|
},
|
|
"cwd": {
|
|
"type": "string",
|
|
"description": "Path of project",
|
|
"default": "${workspaceRoot}"
|
|
},
|
|
"autorun": {
|
|
"type": "array",
|
|
"description": "lldb commands to run when starting to debug",
|
|
"default": []
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"initialConfigurations": [
|
|
{
|
|
"name": "Debug",
|
|
"type": "lldb-mi",
|
|
"request": "launch",
|
|
"target": "./bin/executable",
|
|
"cwd": "${workspaceRoot}"
|
|
}
|
|
],
|
|
"configurationSnippets": [
|
|
{
|
|
"label": "LLDB: Launch Program",
|
|
"description": "Starts the program using lldb-mi",
|
|
"body": {
|
|
"type": "lldb-mi",
|
|
"request": "launch",
|
|
"name": "${2:Launch Program}",
|
|
"target": "${1:./bin/executable}",
|
|
"cwd": "^\"\\${workspaceRoot}\""
|
|
}
|
|
},
|
|
{
|
|
"label": "LLDB: Attach to PID",
|
|
"description": "Attaches to a running program pid using lldb-mi",
|
|
"body": {
|
|
"type": "lldb-mi",
|
|
"request": "launch",
|
|
"name": "${2:Attach to PID}",
|
|
"target": "${1:[PID]}",
|
|
"cwd": "^\"\\${workspaceRoot}\""
|
|
}
|
|
},
|
|
{
|
|
"label": "LLDB: Launch over SSH",
|
|
"description": "Remotely starts the program using lldb-mi",
|
|
"body": {
|
|
"type": "lldb-mi",
|
|
"request": "launch",
|
|
"name": "${6:Launch Program (SSH)}",
|
|
"target": "${1:./bin/executable}",
|
|
"cwd": "^\"\\${workspaceRoot}\"",
|
|
"ssh": {
|
|
"host": "${2:127.0.0.1}",
|
|
"cwd": "${3:/home/remote_user/project/}",
|
|
"keyfile": "${4:/home/my_user/.ssh/id_rsa}",
|
|
"user": "${5:remote_user}"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"label": "LLDB: Launch GUI over SSH with X11 forwarding",
|
|
"description": "Remotely starts the program using lldb-mi with X11 forwarding",
|
|
"body": {
|
|
"type": "lldb-mi",
|
|
"request": "launch",
|
|
"name": "${6:Launch Program (SSH + X11)}",
|
|
"target": "${1:./bin/executable}",
|
|
"cwd": "^\"\\${workspaceRoot}\"",
|
|
"ssh": {
|
|
"host": "${2:127.0.0.1}",
|
|
"cwd": "${3:/home/remote_user/project/}",
|
|
"keyfile": "${4:/home/my_user/.ssh/id_rsa}",
|
|
"user": "${5:remote_user}",
|
|
"forwardX11": true,
|
|
"x11host": "localhost",
|
|
"x11port": 6000
|
|
}
|
|
}
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"type": "mago-mi",
|
|
"extensions": [],
|
|
"program": "./out/src/mago.js",
|
|
"runtime": "node",
|
|
"label": "Mago-MI",
|
|
"variables": {
|
|
"FileBasenameNoExt": "code-debug.getFileBasenameNoExt",
|
|
"FileNameNoExt": "code-debug.getFileNameNoExt"
|
|
},
|
|
"enableBreakpointsFor": {
|
|
"languageIds": [
|
|
"d"
|
|
]
|
|
},
|
|
"configurationAttributes": {
|
|
"launch": {
|
|
"required": [
|
|
"target"
|
|
],
|
|
"properties": {
|
|
"target": {
|
|
"type": "string",
|
|
"description": "Path of executable"
|
|
},
|
|
"arguments": {
|
|
"type": "string",
|
|
"description": "Arguments to append after the executable"
|
|
},
|
|
"cwd": {
|
|
"type": "string",
|
|
"description": "Path of project"
|
|
},
|
|
"magomipath": {
|
|
"type": "string",
|
|
"description": "Path to the mago-mi executable or the command if in PATH",
|
|
"default": "mago-mi"
|
|
},
|
|
"debugger_args": {
|
|
"type": "array",
|
|
"description": "Additional arguments to pass to mago",
|
|
"default": []
|
|
},
|
|
"printCalls": {
|
|
"type": "boolean",
|
|
"description": "Prints all mago calls to the console",
|
|
"default": false
|
|
},
|
|
"showDevDebugOutput": {
|
|
"type": "boolean",
|
|
"description": "Prints all mago responses to the console",
|
|
"default": false
|
|
},
|
|
"autorun": {
|
|
"type": "array",
|
|
"description": "mago commands to run when starting to debug",
|
|
"default": []
|
|
}
|
|
}
|
|
},
|
|
"attach": {
|
|
"required": [
|
|
"target"
|
|
],
|
|
"properties": {
|
|
"target": {
|
|
"type": "string",
|
|
"description": "PID of running program or program name"
|
|
},
|
|
"printCalls": {
|
|
"type": "boolean",
|
|
"description": "Prints all mago calls to the console",
|
|
"default": false
|
|
},
|
|
"showDevDebugOutput": {
|
|
"type": "boolean",
|
|
"description": "Prints all mago responses to the console",
|
|
"default": false
|
|
},
|
|
"executable": {
|
|
"type": "string",
|
|
"description": "Path of executable for debugging symbols"
|
|
},
|
|
"magomipath": {
|
|
"type": "string",
|
|
"description": "Path to the mago-mi executable or the command if in PATH",
|
|
"default": "mago-mi"
|
|
},
|
|
"debugger_args": {
|
|
"type": "array",
|
|
"description": "Additional arguments to pass to mago",
|
|
"default": []
|
|
},
|
|
"cwd": {
|
|
"type": "string",
|
|
"description": "Path of project",
|
|
"default": "${workspaceRoot}"
|
|
},
|
|
"autorun": {
|
|
"type": "array",
|
|
"description": "mago commands to run when starting to debug",
|
|
"default": []
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"initialConfigurations": [
|
|
{
|
|
"name": "Debug",
|
|
"type": "mago-mi",
|
|
"request": "launch",
|
|
"target": "./bin/executable",
|
|
"cwd": "${workspaceRoot}"
|
|
}
|
|
],
|
|
"configurationSnippets": [
|
|
{
|
|
"label": "Mago: Launch Program",
|
|
"description": "Starts the program using mago-mi",
|
|
"body": {
|
|
"type": "mago-mi",
|
|
"request": "launch",
|
|
"name": "${2:Launch Program}",
|
|
"target": "${1:./bin/executable}",
|
|
"cwd": "^\"\\${workspaceRoot}\""
|
|
}
|
|
},
|
|
{
|
|
"label": "Mago: Attach to PID",
|
|
"description": "Attaches to a running program pid using mago-mi",
|
|
"body": {
|
|
"type": "mago-mi",
|
|
"request": "launch",
|
|
"name": "${2:Attach to PID}",
|
|
"target": "${1:[PID]}",
|
|
"cwd": "^\"\\${workspaceRoot}\""
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "tsc -p ./",
|
|
"compile": "tsc -watch -p ./",
|
|
"postinstall": "node ./node_modules/vscode/bin/install"
|
|
},
|
|
"dependencies": {
|
|
"vscode-debugadapter": "^1.15.0",
|
|
"vscode-debugprotocol": "^1.15.0",
|
|
"ssh2": "^0.5.4"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^2.0.10",
|
|
"vscode": "^1.0.3",
|
|
"mocha": "^3.2.0",
|
|
"@types/node": "^6.0.40",
|
|
"@types/mocha": "^2.2.32"
|
|
}
|
|
} |