WriteParagraph.psd1

@{
    ModuleVersion = '0.1.0'
    CompatiblePSEditions = 'Desktop', 'Core'
    GUID = '3ccfc8bb-32d1-4c9a-9647-b8d95eb966b2'
    Author = 'Nick Spreitzer'
    CompanyName = 'RAWR! Productions'
    Copyright = '(c) 2020 Nick Spreitzer'
    Description = 'Write-Host, now with word wrapping!'
    PowerShellVersion = '6.0'
    NestedModules = @('.\WriteParagraph.dll')
    FunctionsToExport = @()
    CmdletsToExport = 'Write-Paragraph'
    VariablesToExport = '*'
    AliasesToExport = @()
    PrivateData = @{
        PSData = @{
            Tags = 'write-host','word-wrap'
            LicenseUri = 'https://github.com/refactorsaurusrex/WriteParagraph/blob/master/LICENSE'
            ProjectUri = 'https://github.com/refactorsaurusrex/WriteParagraph'
        } 
     } 
    HelpInfoURI = 'https://github.com/refactorsaurusrex/WriteParagraph'
}