ReadLine.psd1

@{
    RootModule        = 'ReadLine.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = 'aad8b036-56a6-4956-bb7e-5e74363eabcd'
    Author            = 'Jordan Gray'
    CompanyName       = 'Jordan Gray'
    Copyright         = '(c) Jordan Gray. All rights reserved.'
    Description       = 'Small core helpers'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-ReadLineStatus', 'Initialize-ReadLine')
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PSModule')
        }
    }
}