pwsh-handy-helpers.psd1

@{
  ModuleVersion = '1.0.7.17'
  RootModule = 'pwsh-handy-helpers.psm1'
  GUID = '5af3199a-e01b-4ed6-87ad-fdea39aa7e77'
  CompanyName = 'MyBusiness'
  Author = 'Jason Wohlgemuth'
  Copyright = '(c) 2020 Jason Wohlgemuth. All rights reserved.'
  Description = 'Helper functions, aliases, application frameworks, and more'
  PowerShellVersion = '5.0'
  FileList = @()
  CmdletsToExport = @()
  VariablesToExport = @()
  AliasesToExport = @(
    '~'
    'dip'
    'dra'
    'drai'
    'equal'
    'input'
    'insert'
    'irc'
    'listenFor'
    'listenTo'
    'menu'
    'method'
    'money'
    'on'
    'op'
    'prop'
    'reduce'
    'remove'
    'repeat'
    'rf'
    'say'
    'title'
    'touch'
    'tpl'
    'transform'
    'trigger'
  )
  FunctionsToExport = @(
    'ConvertTo-PowershellSyntax'
    'Enable-Remoting'
    'Find-Duplicate'
    'Find-FirstIndex'
    'Format-MoneyValue'
    'Get-File'
    'Get-State'
    'Home'
    'Import-Html'
    'Install-SshServer'
    'Invoke-DockerInspectAddress'
    'Invoke-DockerRemoveAll'
    'Invoke-DockerRemoveAllImage'
    'Invoke-FireEvent'
    'Invoke-GetProperty'
    'Invoke-GitCommand'
    'Invoke-GitCommit'
    'Invoke-GitDiff'
    'Invoke-GitPushMaster'
    'Invoke-GitStatus'
    'Invoke-GitRebase'
    'Invoke-GitLog'
    'Invoke-Input'
    'Invoke-InsertString'
    'Invoke-ListenTo'
    'Invoke-ListenForWord'
    'Invoke-Menu'
    'Invoke-Method'
    'Invoke-Once'
    'Invoke-Operator'
    'Invoke-PropertyTransform'
    'Invoke-Reduce'
    'Invoke-RemoteCommand'
    'Invoke-RunApplication'
    'Invoke-Speak'
    'Join-StringsWithGrammar'
    'New-ApplicationTemplate'
    'New-DailyShutdownJob'
    'New-File'
    'New-ProxyCommand'
    'New-SshKey'
    'New-Template'
    'Open-Session'
    'Out-Default'
    'Remove-Character'
    'Remove-DailyShutdownJob'
    'Remove-DirectoryForce'
    'Remove-Indent'
    'Rename-FileExtension'
    'Save-State'
    'Show-BarChart'
    'Take'
    'Test-Admin'
    'Test-Empty'
    'Test-Equal'
    'Test-Installed'
    'Use-Grammar'
    'Use-Speech'
    'Write-Color'
    'Write-Label'
    'Write-Repeat'
    'Write-Title'
  )
  PrivateData = @{
    PSData = @{
      Tags = @('dev', 'helpers', 'git', 'docker', 'fp', 'cli', 'app', 'scrapp')
      LicenseUri = 'https://github.com/jhwohlgemuth/pwsh-handy-helpers/blob/master/LICENSE'
      ProjectUri = 'https://github.com/jhwohlgemuth/pwsh-handy-helpers'
    }
  }
}