JournalCli.psd1

@{
    ModuleVersion = '1.3.1'
    CompatiblePSEditions = 'Desktop', 'Core'
    GUID = 'c45932e7-867b-4894-9226-cf278bdb4e3e'
    Author = 'Nick Spreitzer'
    CompanyName = 'RAWR! Productions'
    Copyright = '(c) 2019 Nick Spreitzer'
    Description = 'Index your markdown-based journal with yaml front matter!'
    PowerShellVersion = '6.0'
    NestedModules = @('.\JournalCli.dll')
    FunctionsToExport = @()
    CmdletsToExport = 'Backup-Journal', 'ConvertTo-Yaml', 'Get-DefaultJournalLocation', 
                   'Get-JournalEntriesByTag', 'Get-JournalFiles', 'Get-JournalIndex', 
                   'Get-ReadmeEntries', 'Get-RecentJournalEntries', 
                   'New-CompiledJournalEntry', 'New-JournalEntry', 'Open-BackupLocation', 
                   'Open-Journal', 'Open-JournalEntry', 'Open-RandomJournalEntry', 
                   'Rename-JournalTag', 'Save-JournalSnapshot', 
                   'Set-DefaultJournalLocation'
    VariablesToExport = '*'
    AliasesToExport = 'bj', 'cty', 'gjt', 'gji', 'nj', 'oj', 'oje', 'orj', 'sjs'
    PrivateData = @{
        PSData = @{
            Tags = 'notebook','journal','markdown'
            LicenseUri = 'https://github.com/refactorsaurusrex/journal-cli/blob/master/LICENSE'
            ProjectUri = 'https://github.com/refactorsaurusrex/journal-cli'
        } 
     } 
    HelpInfoURI = 'https://github.com/refactorsaurusrex/journal-cli/wiki'
}