PSBuilder.psd1

@{
    RootModule = 'PSBuilder.psm1'
    ModuleVersion = '1.0.65'
    GUID = '4e489c66-8a1a-11e8-9a94-a6cf71072f73'
    Author = 'Can Hanhan'
    CompanyName = 'Unknown'
    Copyright = '(c) 2019 Can Hanhan. All rights reserved.'
    Description = 'PSBuilder provides re-usable, shared build tasks for building Powershell modules and scripts.'
    RequiredModules = (
        @{
            ModuleName = 'InvokeBuild'
            ModuleVersion = '5.4.2'
        },
        @{
            ModuleName = 'Pester'
            ModuleVersion = '4.6.0'
        },
        @{
            ModuleName = 'platyPS'
            ModuleVersion = '0.12.0'
        }
    )
    RequiredAssemblies = (
        'System.IO.Compression',
        'System.IO.Compression.FileSystem'
    )
    FunctionsToExport = @('Invoke-Builder')
    PrivateData = @{
        PSData = @{
            LicenseUri = 'https://github.com/finarfin/PSBuilder/blob/master/LICENSE'
            ProjectUri = 'https://github.com/finarfin/PSBuilder'
        }
    }
    HelpInfoUri = 'https://github.com/finarfin/PSBuilder/blob/master/docs/PSBuilder.md'
}