forked from ajdunlap/yesod-markdown
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.yaml
45 lines (40 loc) · 950 Bytes
/
package.yaml
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
name: yesod-markdown
version: 0.12.6.14
synopsis: Tools for using markdown in a yesod application
description: >
A subset of Pandoc functionality useful for markdown processing in yesod
applications
category: Web, Yesod
author: Alexander Dunlap, Patrick Brisbin
maintainer: Patrick Brisbin <pbrisbin@gmail.com>
license: GPL-2
github: pbrisbin/yesod-markdown
homepage: http://github.com/pbrisbin/yesod-markdown
extra-doc-files:
- README.md
- CHANGELOG.md
dependencies:
- base >=4.8.0 && <5
- blaze-html >=0.5
- text >=0.11
ghc-options: -Wall
library:
source-dirs: src
dependencies:
- bytestring >=0.9
- pandoc >=2.0
- blaze-markup >=0.5
- xss-sanitize >=0.3.1
- directory < 1.4
- yesod-core >=1.2
- yesod-form >=1.3
- shakespeare >=2.0
- persistent >=0.9
tests:
test:
main: Spec.hs
source-dirs: test
ghc-options: -threaded
dependencies:
- yesod-markdown
- hspec