PackafeManagement.psd1

@{
    RootModule        = 'PackafeManagement.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = '0e1d4a8e-32a3-4e79-b388-20b75227b54b'
    Author            = 'Casey Parker'
    CompanyName       = 'Casey Parker'
    Copyright         = '(c) Casey Parker. All rights reserved.'
    Description       = 'Minimal helpers'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-PackafeManagementStatus', 'Initialize-PackafeManagement')
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PSModule')
        }
    }
}