@project

@info.desc
@info.website

@if (false) {} @if( version!=info.curversion ) {

This is not the latest stable version of @project. See version @info.curversion for the latest version.

} @if (false) {}

To install, run:

haxelib install @project @version 

See using Haxelib in Haxelib documentation for more information.

@if (type == "readme") { @if (false) {} @if (hasReadme) {

README.md

@readme
} } @if (type == "releasenotes") {
@if (hasReleaseNotes) {

@project @version Release notes

@escape(releaseNotes)

}
} @if (type == "changelog") { @if (false) {} @if (hasChangelog) {

CHANGELOG.md

@changelog
} } @if (type == "license") { @if (false) {} @if (hasLicense) {

LICENSE.md

@license
} }
@if (false) {}
@if (dependencies.length > 0) { } @if (info.tags != null && info.tags.length > 0) { }
Contributors
@for(d in info.contributors) { @d.name
}
Version
@version
Published
@formatDate(versionDate)
Dependencies
    @for (dep in dependencies) { @if (dep.version != null) {
  • @dep.name (@dep.version)
  • } else {
  • @dep.name
  • } }
License
@info.license
    @for( t in info.tags ) {
  • @t
  • }
@if (info.website.indexOf("github.com") > -1) { @{var githubInfo = info.website.split("github.com/").pop().split("/");} @{var githubUser = githubInfo[0];} @{var githubRepo = githubInfo[1];} }