packages feed

pregame-1.0.0.0: pregame.cabal

name:
  pregame
version:
  1.0.0.0
synopsis:
  Prelude for applications
description:
  * Re-exports subsections of common and/or practical libraries
  * Fixing Haskell's historical baggage is out of scope
homepage:
  https://github.com/jxv/pregame
license:
  MIT
license-file:
  LICENSE
author:
  Joe Vargas
maintainer:
  https://github.com/jxv
copyright:
  2014-2016
category:
  Prelude
build-type:
  Simple
cabal-version:
  >=1.18

source-repository head
    type: git
    location: https://github.com/jxv/pregame.git

library
  exposed-modules:
    Pregame
  default-extensions:
    NoImplicitPrelude
  build-depends:
      aeson
    , array
    , base >=4.7 && <5.0
    , bytestring
    , containers
    , data-default
    , deepseq
    , either
    , ghc-prim
    , integer-gmp
    , lens
    , mtl
    , safe
    , stm
    , text
    , text-conversions
    , time
    , tuple
    , unordered-containers
    , vector
  hs-source-dirs:
    src
  default-language:
    Haskell2010