SlackWeb.psd1

@{
    RootModule           = 'SlackWeb.psm1'
    ModuleVersion        = '0.0.1'
    GUID                 = '0c253c7c-e520-483e-89f9-c24cea05691b'
    Author               = 'Kirill Nikolaev'
    Description          = 'Enables you to work with Slack via the web-API rather then the regular API. This allows you to automate Slack actions w/o registering an application in your workspace.'
    PowerShellVersion    = '3.0'
    RequiredModules      = @(
        'Configuration'
    )
    FunctionsToExport    = @(
        'Clear-Configuration'
        'Export-ChannelHistory'
        'Export-People'
        'Get-ChannelMessages'
        'Get-Channel'
        'Get-Configuration'
        'Get-People'
        'Set-Configuration'
    )
    CmdletsToExport      = @()
    AliasesToExport      = @()
    DefaultCommandPrefix = 'SlackWeb'
    HelpInfoURI          = 'https://github.com/exchange12rocks/SlackWeb/blob/master/README.md'
    PrivateData          = @{
        PSData = @{
            Tags                       = @()
            LicenseUri                 = 'https://github.com/exchange12rocks/SlackWeb/blob/master/LICENSE'
            ProjectUri                 = 'https://github.com/exchange12rocks/SlackWeb/'
            ExternalModuleDependencies = @(
                'Configuration'
            )
            ReleaseNotes               = ''
        }
    }
}