-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.yaml
More file actions
101 lines (96 loc) · 2.17 KB
/
package.yaml
File metadata and controls
101 lines (96 loc) · 2.17 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
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
97
98
99
100
101
name: cloud-seeder
version: 0.2.0.0
category: Cloud
synopsis: A tool for interacting with AWS CloudFormation
description: |
This package provides a DSL for creating deployment configurations, as well
as an interpreter that reads deployment configurations in order to provision
application stacks to AWS CloudFormation using Amazonka.
copyright: 2018 CJ Affiliate by Conversant
license: ISC
license-file: LICENSE
author: Alexis King <lexi.lambda@gmail.com>, Michael Adlai Arnold <michaelaarnold@gmail.com>
maintainer: Alexis King <lexi.lambda@gmail.com>, Michael Adlai Arnold <michaelaarnold@gmail.com>
github: cjdev/cloud-seeder
extra-source-files:
- CHANGELOG.md
- LICENSE
- package.yaml
- README.md
- stack.yaml
ghc-options: -Wall -Wredundant-constraints
default-extensions:
- ApplicativeDo
- ConstraintKinds
- DefaultSignatures
- DeriveGeneric
- ExistentialQuantification
- FlexibleContexts
- FlexibleInstances
- FunctionalDependencies
- GADTs
- GeneralizedNewtypeDeriving
- LambdaCase
- MultiParamTypeClasses
- NamedFieldPuns
- OverloadedLists
- OverloadedStrings
- RankNTypes
- ScopedTypeVariables
- StandaloneDeriving
- TupleSections
- TypeApplications
- TypeOperators
library:
dependencies:
- aeson >= 0.11.2.0
- amazonka >= 1.4.5
- amazonka-cloudformation >= 1.4.5
- amazonka-core >= 1.4.5
- amazonka-kms >= 1.4.5
- amazonka-s3 >= 1.4.5
- base >= 4.9.0.0 && < 5
- bytestring
- containers
- crypto-api >= 0.3
- deepseq >= 1.4.1.0
- exceptions >= 0.6
- lens
- monad-control >= 1.0.0.0
- monad-logger >= 0.3.11.1
- mtl
- optparse-applicative >= 0.14.0.0
- text
- text-conversions >= 0.3.0
- transformers
- transformers-base
- unordered-containers
- uuid >= 1.2.6 && < 2
- yaml >= 0.8
source-dirs: library
tests:
cloud-seeder-test-suite:
dependencies:
- amazonka-cloudformation
- base
- bytestring
- cloud-seeder
- containers
- deepseq
- fast-logger
- hspec
- lens
- monad-logger
- monad-mock
- mtl
- optparse-applicative
- text
- these
- transformers
- yaml
ghc-options:
- -rtsopts
- -threaded
- -with-rtsopts=-N
main: Main.hs
source-dirs: test-suite