forked from dbaynard/lucid-from-html
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.yaml
49 lines (48 loc) · 1019 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
46
47
48
49
name: lucid-from-html
version: '0.7.0'
synopsis: Tool to convert HTML to Lucid code.
description: ! 'Tool that converts HTML files to Haskell code, ready to be
used with the Lucid library.'
category: Text
author: Oleg Tsybulskyi, David Baynard, Jasper Van der Jeugt, Simon Meier
maintainer: alogic0@gmail.com
license: BSD3
github: alogic0/lucid-from-html
dependencies:
- base >=4 && <5
- containers >=0.3
- directory >=1.0
- filepath >=1.1
- tagsoup >=0.14.1
- text >= 0.11
- lucid >= 2.9.9
extra-source-files:
- CHANGELOG.md
- README.md
ghc-options: -Wall
library:
exposed-modules:
- Lucid.Generate
- Lucid.Sanitize
- Lucid.Combinators
- Lucid.Supplemental
source-dirs:
- src
executables:
lucid-from-html:
source-dirs:
- app
main: Main.hs
dependencies:
- lucid-from-html
tests:
test:
main: test.hs
source-dirs:
- tests
dependencies:
- tasty-golden >= 2.3.1.1
- bytestring >=0.10
- tasty >=0.8
- lucid-from-html
stability: Experimental