-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequirements.psd1
52 lines (46 loc) · 1.24 KB
/
requirements.psd1
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
@{
PSDependOptions = @{
Target = ".\out"
AddToPath = $true
}
# Not much of a testing application without the testing module
Pester = @{
Version = '5.3'
Tags = 'dev', 'prod', 'ci'
}
# Used to maintain a module configuration
Configuration = @{
Version = '1.5.0'
Tags = 'dev', 'prod', 'ci'
}
# used to write logging messages to various targets
Logging = @{
Version = '4.8.3'
Tags = 'dev', 'prod', 'ci'
}
# The template system for flexible, configurable Output
EPS = @{
Version = '1.0'
Tags = 'dev', 'prod', 'ci'
}
# Provides colors, emojis and symbols to Output
Pansies = @{
Version = '2.3'
Tags = 'dev', 'prod', 'ci'
# This module wants to "Clobber" `Write-Host`, which personally, I think is a good thing....
Parameters = @{
AllowClobber = $true
AllowPrerelease = $true
}
}
# used during development and testing
PSScriptAnalyzer = @{
Version = '1.20.0'
Tags = 'dev', 'ci'
}
# Used to create a new audit folder
Plaster = @{
Version = '1.1.3'
Tags = 'dev', 'prod', 'ci'
}
}