35 lines
1.9 KiB
XML
35 lines
1.9 KiB
XML
<?xml version="1.0"?>
|
|
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|
<metadata>
|
|
<id>Brackets.Theseus</id>
|
|
<title>Theseus JavaScript debugger for Brackets</title>
|
|
<version>0.2.8</version>
|
|
<authors>Adobe</authors>
|
|
<owners>Ethan J Brown</owners>
|
|
<summary>A pretty darn cool JavaScript debugger for Brackets.</summary>
|
|
<description>Theseus is a new type of JavaScript debugger for Node.js, Chrome, and both simultaneously. It is an extension for the Brackets code editor.
|
|
|
|
* Real-time code coverage: Theseus shows the number of times that every function has been called next to its definition. Functions that have never been called are also given a gray background. You can watch the code light up as you interact with the web page.
|
|
|
|
* Retroactive inspection: Click a call count to see the values of parameters, return values, and any exceptions that have been thrown from that function. It's like adding console.log without having to save and reload.
|
|
|
|
* Asynchronous call tree: If you click multiple call counts, all invocations of those functions are shown in a tree. When callback functions are called, they show up in the tree under the function that created them, regardless of whether they were called immediately or many ticks later.
|
|
|
|
http://brackets.io/
|
|
</description>
|
|
<projectUrl>https://github.com/adobe-research/theseus</projectUrl>
|
|
<tags>editor web adobe javascript html css debugger nodejs</tags>
|
|
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
|
|
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
|
<iconUrl>https://github.com/Iristyle/ChocolateyPackages/raw/master/Brackets/brackets_logo.png</iconUrl>
|
|
<!-- <releaseNotes></releaseNotes> -->
|
|
<dependencies>
|
|
<dependency id="nodejs.install" />
|
|
<dependency id="Brackets" />
|
|
</dependencies>
|
|
</metadata>
|
|
<files>
|
|
<file src="tools\**" target="tools" />
|
|
</files>
|
|
</package>
|