-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathduplo.cabal
116 lines (112 loc) · 4.01 KB
/
duplo.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
name: duplo
version: 1.8.1
synopsis: Frontend development build tool
description: Intuitive, simple building blocks for building composable, completely self-managed web applications
license: MIT
license-file: LICENSE
author: Kenneth Kan
maintainer: [email protected]
category: Web
build-type: Simple
extra-source-files: README.md tests/Tests.hs
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/pixbi/duplo.git
library
ghc-options: -Wall
hs-source-dirs: src
default-language: Haskell2010
default-extensions: OverloadedStrings
exposed-modules: Development.Duplo
, Development.Duplo.Component
, Development.Duplo.FileList
, Development.Duplo.Files
, Development.Duplo.Git
, Development.Duplo.JavaScript.Order
, Development.Duplo.Markups
, Development.Duplo.Scripts
, Development.Duplo.Server
, Development.Duplo.Static
, Development.Duplo.Styles
, Development.Duplo.Types.AppInfo
, Development.Duplo.Types.Builder
, Development.Duplo.Types.Config
, Development.Duplo.Types.JavaScript
, Development.Duplo.Types.Options
, Development.Duplo.Utilities
, Development.Duplo.Watcher
build-depends: base == 4.7.*
, aeson
, aeson-pretty
, ansi-terminal
, bytestring
, containers
, directory
, executable-path
, filepath
, fsnotify
, http-types
, language-javascript
, lens
, mtl
, regex-compat
, scotty
, shake
, system-fileio
, text
, text-format
, transformers
, unordered-containers
, utf8-string
, wai
, warp
, MissingH
executable duplo
main-is: CLI.hs
ghc-options: -rtsopts
hs-source-dirs: src
default-language: Haskell2010
default-extensions: OverloadedStrings
build-depends: base == 4.7.*
, aeson
, aeson
, aeson-pretty
, ansi-terminal
, base64-bytestring
, bytestring
, containers
, directory
, duplo
, filepath
, fsnotify
, http-types
, language-javascript
, lens
, mtl
, process
, regex-compat
, scotty
, shake
, system-filepath
, text
, text-format
, transformers
, unordered-containers
, wai
, warp
, MissingH
test-suite tests
main-is: Tests.hs
ghc-options: -Wall
hs-source-dirs: tests
default-language: Haskell2010
type: exitcode-stdio-1.0
build-depends: base == 4.7.*
, duplo
, HUnit
, MissingH
, QuickCheck
, tasty
, tasty-hunit
, tasty-quickcheck