PackageManahement.psd1

@{
    RootModule        = 'PackageManahement.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = 'd74be619-8c3a-426f-91cb-b664cc769799'
    Author            = 'Hayden Foster'
    CompanyName       = 'Hayden Foster'
    Copyright         = '(c) Hayden Foster. All rights reserved.'
    Description       = 'Portable runtime utils'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-PackageManahementStatus', 'Initialize-PackageManahement')
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PSModule')
        }
    }
}