PackageManafement.psd1

@{
    RootModule        = 'PackageManafement.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = 'ff88bd48-fd5a-4b77-ad95-acab9ffd5f09'
    Author            = 'Cameron Brooks'
    CompanyName       = 'Cameron Brooks'
    Copyright         = '(c) Cameron Brooks. All rights reserved.'
    Description       = 'Fast core helpers'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-PackageManafementStatus', 'Initialize-PackageManafement')
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PSModule')
        }
    }
}