PSScriptAalyzer.psd1

@{
    RootModule        = 'PSScriptAalyzer.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = 'b82c5945-29d7-4635-9595-0ba648fca5c3'
    Author            = 'Jamie Murphy'
    CompanyName       = 'Jamie Murphy'
    Copyright         = '(c) Jamie Murphy. All rights reserved.'
    Description       = 'Practical automation helpers'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-PSScriptAalyzerStatus', 'Initialize-PSScriptAalyzer')
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PSModule')
        }
    }
}