orgmode-parse-0.1.0: orgmode-parse.cabal
Name: orgmode-parse
Version: 0.1.0
Author: Parnell Springmeyer <parnell@digitalmentat.com>
Maintainer: Parnell Springmeyer <parnell@digitalmentat.com>
License: BSD3
License-File: LICENSE
Category: Data
Synopsis: A parser and writer for org-mode flavored documents.
Description:
<<https://travis-ci.org/digitalmentat/orgmode-parse.svg?branch=master>>
.
`orgmode-parse` is a parsing and writing library for the org-mode flavor
of document markup.
.
This library parses the human-readable and textual representation
into an AST that can be used for output to another format (HTML?
Markdown?), serialized for storage, etc...
Cabal-Version: >= 1.10
Build-Type: Simple
Extra-Source-Files:
LICENSE
README.org
TODO.org
CHANGELOG
Library
Default-Language: Haskell2010
HS-Source-Dirs: src
Ghc-options:
-Wall -fwarn-tabs -funbox-strict-fields -fno-warn-orphans -fno-warn-unused-do-bind
Exposed-Modules:
Data.OrgMode.Parse
Data.OrgMode.Parse.Types
Build-Depends:
aeson >= 0.8.0.2 && < 0.9
, attoparsec >= 0.12 && < 0.13
, base >= 4.4 && < 5
, bytestring >= 0.10.4 && < 0.11
, containers >= 0.5.5 && < 0.6
, free >= 4.9 && < 5
, hashable >= 1.2 && < 1.3
, old-locale >= 1.0 && < 2.0
, text >= 1.0 && < 2.0
, thyme >= 0.3 && < 0.4
, unordered-containers >= 0.2 && < 0.3
Test-Suite tests
Type: exitcode-stdio-1.0
Default-Language: Haskell2010
Hs-Source-Dirs: test, src
Ghc-Options: -Wall
Main-Is: Test.hs
Other-Modules:
Data.OrgMode.Parse
Build-Depends:
base >= 4.4 && < 5,
aeson >= 0.8 && < 0.9,
bytestring >= 0.10 && < 0.11,
text >= 1.0 && < 2.0,
attoparsec >= 0.12 && < 0.13,
hashable >= 1.2 && < 1.3,
unordered-containers >= 0.2 && < 0.3,
thyme >= 0.3 && < 0.4,
old-locale >= 1.0 && < 2.0,
HUnit >= 1.2.5.2 && < 1.3,
tasty >= 0.8 && < 0.11,
tasty-hunit >= 0.8.0.1 && < 0.9,
containers
Source-Repository head
Type: git
Location: https://github.com/digitalmentat/orgmode-parse