packages feed

cloud-seeder-0.0.0.0: package.yaml

name: cloud-seeder
version: 0.0.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 deploy
  application stacks to AWS CloudFormation using Amazonka.

copyright: 2017 CJ Affiliate by Conversant
license: ISC
license-file: LICENSE
author: Alexis King <lexi.lambda@gmail.com>, Michael Arnold <michaelaarnold@gmail.com>
maintainer: Alexis King <lexi.lambda@gmail.com>, Michael Arnold <michaelaarnold@gmail.com>
github: cjdev/cloud-seeder

extra-source-files:
- CHANGELOG.md
- LICENSE
- package.yaml
- README.md
- stack.yaml

ghc-options: -Wall
default-extensions:
- ApplicativeDo
- ConstraintKinds
- DefaultSignatures
- DeriveGeneric
- ExistentialQuantification
- FlexibleContexts
- FlexibleInstances
- FunctionalDependencies
- GADTs
- GeneralizedNewtypeDeriving
- LambdaCase
- MultiParamTypeClasses
- NamedFieldPuns
- OverloadedStrings
- RankNTypes
- ScopedTypeVariables
- StandaloneDeriving
- TupleSections
- TypeOperators

library:
  dependencies:
  - amazonka >= 1.4.5
  - amazonka-cloudformation >= 1.4.5
  - amazonka-core >= 1.4.5
  - base >= 4.9.0.0 && < 5
  - deepseq >= 1.4.1.0
  - exceptions >= 0.8 && < 0.9
  - lens
  - monad-control >= 1.0.0.0
  - monad-logger >= 0.3.13.1
  - monad-time >= 0.2
  - mtl
  - optparse-applicative >= 0.13.0.0
  - text
  - transformers
  - transformers-base
  source-dirs: library

executables:
  cloud-seeder:
    dependencies:
    - base
    - cloud-seeder
    ghc-options:
    - -rtsopts
    - -threaded
    - -with-rtsopts=-N
    main: Main.hs
    source-dirs: executable

tests:
  cloud-seeder-test-suite:
    dependencies:
    - amazonka-cloudformation >= 1.4 && < 1.5
    - base >= 4.9.0.0 && < 5
    - bytestring
    - cloud-seeder
    - deepseq >= 1.4.1.0
    - fast-logger >= 2.4.8
    - hspec >= 2.4 && < 2.5
    - lens
    - monad-logger >= 0.3 && < 0.4
    - mtl
    - text >= 1.2 && < 1.3
    - transformers
    ghc-options:
    - -rtsopts
    - -threaded
    - -with-rtsopts=-N
    main: Main.hs
    source-dirs: test-suite