packages feed

cloud-seeder-0.1.0.0: cloud-seeder.cabal

-- This file has been generated from package.yaml by hpack version 0.17.1.
--
-- see: https://github.com/sol/hpack

name:           cloud-seeder
version:        0.1.0.0
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.
category:       Cloud
homepage:       https://github.com/cjdev/cloud-seeder#readme
bug-reports:    https://github.com/cjdev/cloud-seeder/issues
author:         Alexis King <lexi.lambda@gmail.com>, Michael Arnold <michaelaarnold@gmail.com>
maintainer:     Alexis King <lexi.lambda@gmail.com>, Michael Arnold <michaelaarnold@gmail.com>
copyright:      2017 CJ Affiliate by Conversant
license:        ISC
license-file:   LICENSE
build-type:     Simple
cabal-version:  >= 1.10

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

source-repository head
  type: git
  location: https://github.com/cjdev/cloud-seeder

library
  hs-source-dirs:
      library
  default-extensions: ApplicativeDo ConstraintKinds DefaultSignatures DeriveGeneric ExistentialQuantification FlexibleContexts FlexibleInstances FunctionalDependencies GADTs GeneralizedNewtypeDeriving LambdaCase MultiParamTypeClasses NamedFieldPuns OverloadedLists OverloadedStrings RankNTypes ScopedTypeVariables StandaloneDeriving TupleSections TypeApplications TypeOperators
  ghc-options: -Wall -Wredundant-constraints
  build-depends:
      aeson >= 0.11.2.0
    , amazonka >= 1.4.5
    , amazonka-cloudformation >= 1.4.5
    , amazonka-core >= 1.4.5
    , base >= 4.9.0.0 && < 5
    , containers
    , 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
    , transformers
    , transformers-base
    , unordered-containers
    , uuid >= 1.2.6 && < 2
    , yaml >= 0.8
  exposed-modules:
      Network.CloudSeeder
      Network.CloudSeeder.CommandLine
      Network.CloudSeeder.DSL
      Network.CloudSeeder.Interfaces
      Network.CloudSeeder.Main
      Network.CloudSeeder.Template
      Network.CloudSeeder.Types
  default-language: Haskell2010

test-suite cloud-seeder-test-suite
  type: exitcode-stdio-1.0
  main-is: Main.hs
  hs-source-dirs:
      test-suite
  default-extensions: ApplicativeDo ConstraintKinds DefaultSignatures DeriveGeneric ExistentialQuantification FlexibleContexts FlexibleInstances FunctionalDependencies GADTs GeneralizedNewtypeDeriving LambdaCase MultiParamTypeClasses NamedFieldPuns OverloadedLists OverloadedStrings RankNTypes ScopedTypeVariables StandaloneDeriving TupleSections TypeApplications TypeOperators
  ghc-options: -Wall -Wredundant-constraints -rtsopts -threaded -with-rtsopts=-N
  build-depends:
      amazonka-cloudformation
    , base
    , bytestring
    , cloud-seeder
    , containers
    , deepseq
    , fast-logger
    , hspec
    , lens
    , monad-logger
    , monad-mock
    , mtl
    , optparse-applicative
    , text
    , transformers
    , yaml
  other-modules:
      Network.CloudSeeder.CommandLineSpec
      Network.CloudSeeder.DSLSpec
      Network.CloudSeeder.MainSpec
      Network.CloudSeeder.TemplateSpec
      Network.CloudSeeder.Test.Stubs
  default-language: Haskell2010