packages feed

shikensu-0.3.2: shikensu.cabal

name: shikensu
version: 0.3.2
category: File IO

synopsis:
  A small toolset for building static websites

description:
  Please see README.md

homepage:
  https://github.com/icidasset/shikensu#README

license: MIT
license-file: LICENSE

author: Steven Vandevelde
maintainer: icid.asset@gmail.com

build-type: Simple
cabal-version: >= 1.10


source-repository head
  type: git
  location: https://github.com/icidasset/shikensu


library
  default-language:
    Haskell2010

  default-extensions:
    OverloadedStrings

  hs-source-dirs:
    src

  exposed-modules:
    Shikensu,
    Shikensu.Contrib,
    Shikensu.Contrib.IO,
    Shikensu.Internal.Utilities,
    Shikensu.Metadata,
    Shikensu.Sorting,
    Shikensu.Types,
    Shikensu.Utilities

  build-depends:
    aeson == 1.0.*,
    base >= 4.8 && < 5,
    bytestring == 0.10.*,
    directory == 1.3.*,
    filepath == 1.4.*,
    flow == 1.0.*,
    Glob == 0.7.*,
    unordered-containers == 0.2.*,
    text >= 1.2 && < 2


test-suite tests
  default-language:
    Haskell2010

  default-extensions:
    OverloadedStrings

  ghc-options:
    -Wall -threaded -rtsopts -with-rtsopts=-N

  type:
    exitcode-stdio-1.0

  hs-source-dirs:
    tests

  main-is:
    Test.hs

  other-modules:
    Test.Contrib,
    Test.Example,
    Test.Helpers,
    Test.Shikensu,
    Test.Utilities

  build-depends:
    aeson,
    base,
    bytestring,
    directory,
    filepath,
    flow,
    shikensu,
    tasty == 0.11.*,
    tasty-hunit == 0.9.*,
    text,
    unordered-containers