PSGhost.psd1
@{ RootModule = 'PSGhost.psm1' ModuleVersion = '1.0.14' GUID = '3b4869fa-45a9-41a1-a412-bd07c84559dc' Author = 'Adam Bertram' CompanyName = 'Adam the Automator, LLC' Copyright = '(c) 2017 Adam Bertram. All rights reserved.' Description = "This module is used to interact with the blogging platform, Ghost's API." PowerShellVersion = '5.0' FunctionsToExport = 'Get-GhostConfiguration','Get-GhostPost','Get-GhostSettings','Save-GhostConfigurationItem','Set-GhostPost' CmdletsToExport = '*' VariablesToExport = '*' AliasesToExport = '*' PrivateData = @{ PSData = @{ Tags = @('PSModule', 'Ghost') ProjectUri = 'https://github.com/adbertram/PSGhost' } } } |