forked from yamadapc/haskell-frontmatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrontmatter.cabal
49 lines (46 loc) · 1.61 KB
/
frontmatter.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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: [email protected]
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