-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.requirements.psd1
96 lines (95 loc) · 3.12 KB
/
build.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
@{
# Some defaults for all dependencies
PSDependOptions = @{
Target = 'CurrentUser'
Parameters = @{
AllowClobber = $True
SkipPublisherCheck = $True
}
}
'psake' = @{
DependencyType = 'PSGalleryModule'
Version = '4.7.4'
Tags = @('Desktop', 'Core')
}
'PSDeploy' = @{
DependencyType = 'PSGalleryModule'
Version = '1.0.1'
Tags = @('Desktop', 'Core')
}
'BuildHelpers' = @{
DependencyType = 'PSGalleryModule'
Version = '2.0.7'
Tags = @('Desktop', 'Core')
}
'Pester' = @{
DependencyType = 'PSGalleryModule'
Version = '4.7.3'
Tags = @('Desktop', 'Core')
}
'platyps' = @{
DependencyType = 'PSGalleryModule'
Version = '0.12.0'
Tags = 'Desktop'
}
'AWS.Tools.Common' = @{
DependencyType = 'PSGalleryModule'
Version = '4.0.4.0'
Tags = @('Desktop', 'Core')
}
'AWS.Tools.AutoScaling' = @{
DependencyType = 'PSGalleryModule'
Version = '4.0.4.0'
Tags = @('Desktop', 'Core')
}
'AWS.Tools.SecurityToken' = @{
DependencyType = 'PSGalleryModule'
Version = '4.0.4.0'
Tags = @('Desktop', 'Core')
}
'AWS.Tools.CloudFormation' = @{
DependencyType = 'PSGalleryModule'
Version = '4.0.4.0'
Tags = @('Desktop', 'Core')
}
'AWS.Tools.EC2' = @{
DependencyType = 'PSGalleryModule'
Version = '4.0.4.0'
Tags = @('Desktop', 'Core')
}
'AWS.Tools.S3' = @{
DependencyType = 'PSGalleryModule'
Version = '4.0.4.0'
Tags = @('Desktop', 'Core')
}
'AWS.Tools.CloudwatchLogs' = @{
DependencyType = 'PSGalleryModule'
Version = '4.0.4.0'
Tags = @('Desktop', 'Core')
}
'AWS.Tools.Lambda' = @{
DependencyType = 'PSGalleryModule'
Version = '4.0.4.0'
Tags = @('Desktop', 'Core')
}
'AWS.Tools.SimpleSystemsManagement' = @{
DependencyType = 'PSGalleryModule'
Version = '4.0.4.0'
Tags = @('Desktop', 'Core')
}
'AWS.Tools.ElasticBeanstalk' = @{
DependencyType = 'PSGalleryModule'
Version = '4.0.4.0'
Tags = @('Desktop', 'Core')
}
'AWS.Tools.ElasticLoadBalancing' = @{
DependencyType = 'PSGalleryModule'
Version = '4.0.4.0'
Tags = @('Desktop', 'Core')
}
'AWS.Tools.ElasticLoadBalancingV2' = @{
DependencyType = 'PSGalleryModule'
Version = '4.0.4.0'
Tags = @('Desktop', 'Core')
}
}