-
Notifications
You must be signed in to change notification settings - Fork 0
/
chili.cabal
68 lines (66 loc) · 2.16 KB
/
chili.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: chili
version: 0.5.2
synopsis: yet another clientside ui library
description: Model/View with components that emit browser events
license: BSD3
license-file: LICENSE
author: Jeremy Shaw
maintainer: jeremy@n-heptane.com
category: Web
build-type: Simple
extra-source-files: ChangeLog.md, README.md
cabal-version: >=1.10
library
build-depends: aeson,
base >=4.8 && <4.17,
bytestring,
case-insensitive,
containers,
haskell-src-meta,
html-parse,
hsx2hs,
ghcjs-base,
lens,
mtl,
safe,
stm,
template-haskell,
text
default-language: Haskell2010
ghc-options: -Werror=incomplete-patterns
exposed-modules:
Chili.Canvas
Chili.Canvas.Color
Chili.Canvas.Image
Chili.Canvas.ImageData
Chili.Canvas.Types
Chili.Debug
Chili.Diff
Chili.HSX
Chili.Patch
Chili.PointerEventObject
Chili.TDVar
Chili.Types
Chili.Loop
Chili.Internal
Dominator
Dominator.Diff
Dominator.DOMC
Dominator.JSDOM
Dominator.Patch
Dominator.HSX
Dominator.Types
Dominator.DiffPartial
Dominator.PatchPartial
Test-suite spec
main-is: Spec.hs
hs-source-dirs: test
type: exitcode-stdio-1.0
build-depends: base,
containers,
hspec,
hsx2hs,
chili,
text
default-language: Haskell2010
ghc-options: -threaded -O2