-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebapi-console.cabal
76 lines (72 loc) · 2.71 KB
/
webapi-console.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
-- Initial webapi-console.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: webapi-console
version: 0.1.0.0
synopsis: Api Console for webapi project
-- description:
homepage: https://github.com/byteally/webapi
license: BSD3
license-file: LICENSE
author: Magesh B, Sree Nidhi, Tarun Joshi
maintainer: magesh85@gmail.com, nairsreenidhi@gmail.com, tjjoshi7@gmail.com
copyright: © 2016 ByteAlly
category: Web
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
data-files: css/main.css
, js/script.js
data-dir: static
library
hs-source-dirs: src
ghc-options: -Wall
exposed-modules: WebApi.Console
WebApi.PageTemplate
-- WebApi.Console.TH
other-modules: Reflex.Utils
-- WebApi.Console.Function
build-depends: base >= 4.7 && < 5
, ghcjs-dom
, jsaddle == 0.9.*
, template-haskell
, reflex >= 0.6.4 && < 0.7
, reflex-dom-core >= 0.5.3 && < 0.6
, webapi-client-reflex-dom >= 0.1.0.0
, webapi-contract == 0.4.*
, text
, network-uri == 2.6.*
, http-types >= 0.8
, http-media == 0.8.*
, case-insensitive >= 1.2
, bytestring
, vector
, aeson
, containers
, transformers >= 0.4
, lens >= 4.13
, unordered-containers == 0.2.*
, hashable >= 1.2
, aeson-pretty >= 0.7
, time >= 1.8
, primitive < 0.7
default-language: Haskell2010
executable webapi-console-test
hs-source-dirs: tests
other-modules: TestApi
main-is: Main.hs
ghc-options: -Wall -O2
ghcjs-options: -dedupe
build-depends: base
, webapi-console
, webapi-contract == 0.4.*
, text
, network-uri == 2.6.*
, http-types >= 0.8
, bytestring
, vector
, aeson
, containers
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/byteally/webapi-console