-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDebug.psd1
More file actions
55 lines (51 loc) · 1.67 KB
/
Debug.psd1
File metadata and controls
55 lines (51 loc) · 1.67 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
@{
RootModule = 'Debug.psm1'
ModuleVersion = '1.0.5'
GUID = '11d53ac8-b590-4555-838b-71f7278f1e0e'
Author = 'n8tb1t'
CompanyName = 'n8tb1t'
Copyright = '(c) 2019 n8tb1t, licensed under MIT License.'
Description = 'A collection of debugging tools for helping to develop modern PowerShell applications. For example: objects color highlighting, various code metrics and performance benchmarks.'
PowerShellVersion = '5.0'
HelpInfoURI = 'https://github.com/n8tb1t/Debug/blob/master/README.md'
RequiredModules = @('Parser', 'ColoredText')
FunctionsToExport = 'Debug-Object'
AliasesToExport = 'debug'
PrivateData = @{
PSData = @{
Tags = @(
'table',
'list',
'tree',
'debug',
'log',
'color',
'colored',
'object',
'print',
'highlight',
'dump',
'timer',
'measure'
)
LicenseUri = 'https://github.com/n8tb1t/Debug/blob/master/LICENSE'
ProjectUri = 'https://github.com/n8tb1t/Debug'
IconUri = 'https://raw.githubusercontent.com/n8tb1t/Debug/master/Docs/Logo/debug.png'
ReleaseNotes = '
Check out the project site for more information:
https://github.com/n8tb1t/Debug'
}
DevTools = @{
Dependencies = (
@{
deploy = $false
name = 'Parser'
},
@{
deploy = $false
name = 'ColoredText'
}
)
}
}
}