MozconfigWrapper.psd1

@{
    Author                = 'Molly Howell'
    Copyright             = '© 2022 Molly Howell. Available under the terms of the Anti-Capitalist Software License'

    Description           = 'Utilities for working with mozconfig files directly in PowerShell'
    ModuleVersion         = '1.0.0'
    GUID                  = 'df5f686d-8420-4236-b471-301f48418427'

    ProcessorArchitecture = 'None'
    CompatiblePSEditions  = @('Desktop', 'Core')
    PowerShellVersion     = '5.1'

    RootModule            = 'MozconfigWrapper.psm1'
    AliasesToExport       = @('buildwith', 'edmozconfig', 'mkmozconfig', 'rmmozconfig', 'lsmozconfig')
    FunctionsToExport     = @('Select-Mozconfig', 'Edit-Mozconfig', 'Add-Mozconfig', 'Remove-Mozconfig', 'Get-Mozconfig')
    CmdletsToExport       = @()

    PrivateData           = @{
        PSData = @{
            Tags       = @('PSEdition_Desktop', 'PSEdition_Core', 'Windows', 'Linux', 'MacOS')
            LicenseUri = 'https://anticapitalist.software/'
            ProjectUri = 'https://bitbucket.org/DrGoldfire/mozconfigwrapper-ps/'
        }
    }
}