forked from alogic0/lucid-from-html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
50 lines (49 loc) · 979 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
50
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: [email protected]
license: BSD3
github: alogic0/lucid-from-html
dependencies:
- base
- containers
- directory
- filepath
- tagsoup
- text
- lucid
- lucid-htmx
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