packages feed

frontmatter-0.1.0.2: frontmatter.cabal

name:                frontmatter
version:             0.1.0.2
synopsis:            Parses frontmatter as used in Jekyll markdown files.
description:         Parses frontmatter as used in Jekyll markdown files.
                     .
                     Provides a parser that'll parse the frontmatter only and
                     one that'll execute a YAML parser on it, so that it's a
                     YAML frontmatter parser.
homepage:            https://github.com/yamadapc/haskell-frontmatter
license:             MIT
license-file:        LICENSE
author:              Pedro Tacla Yamada
maintainer:          tacla.yamada@gmail.com
copyright:           Copyright (c) 2015 Pedro Tacla Yamada
category:            Data
build-type:          Simple
cabal-version:       >=1.10
tested-with: GHC >= 7.8
extra-source-files:  changelog.md
                   , README.md

source-repository head
  type:     git
  location: git://github.com/yamadapc/haskell-frontmatter.git

library
  exposed-modules:     Data.Frontmatter
                     , Data.Frontmatter.Internal
                     , Data.Yaml.Frontmatter
  build-depends:       attoparsec >= 0.11.3.0
                     , base >= 4 && <5
                     , bytestring
                     , yaml
  hs-source-dirs:      src
  default-language:    Haskell2010

test-suite hspec
  main-is: Spec.hs
  type: exitcode-stdio-1.0
  build-depends: QuickCheck
               , attoparsec
               , base
               , yaml
               , bytestring
               , frontmatter
               , text
               , hspec
  hs-source-dirs: test
  default-language: Haskell2010