-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGitHubRestModule.psd1
More file actions
29 lines (26 loc) · 895 Bytes
/
Copy pathGitHubRestModule.psd1
File metadata and controls
29 lines (26 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
@{
# Module metadata
RootModule = 'GitHubRestModule.psm1'
ModuleVersion = '1.0.0'
GUID = 'aa1d7fd8-740b-47ea-ba8a-3e72031f035f'
Author = 'Hector'
CompanyName = 'htekdev'
Description = 'GitHub REST API PowerShell Module'
# Dependencies
RequiredModules = @('powershell-yaml', 'jwtPS')
RequiredAssemblies = @()
# Exported components
FunctionsToExport = '*'
CmdletsToExport = '*'
VariablesToExport = '*'
AliasesToExport = '*'
# Private data
PrivateData = @{
PSData = @{
Tags = @('GitHub', 'RESTAPI', 'PowerShell')
LicenseUri = 'https://github.com/htekdev/github-api-ps-module/blob/master/LICENSE'
ProjectUri = 'https://github.com/htekdev/github-api-ps-module'
ReleaseNotes = 'Initial release'
}
}
}