-
Notifications
You must be signed in to change notification settings - Fork 5
/
slack-log.cabal
96 lines (91 loc) · 2.08 KB
/
slack-log.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
cabal-version: 2.4
name: slack-log
version: 0.1.0.0
description: Please see the README on GitHub at <https://github.com/haskell-jp/slack-log#readme>
homepage: https://github.com/haskell-jp/slack-log#readme
bug-reports: https://github.com/haskell-jp/slack-log/issues
author: Japan Haskell User Group
maintainer: [email protected]
copyright: 2018 Japan Haskell User Group
license: Apache-2.0
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
test/assets/expected-index.html
test/assets/expected-messages.html
test/assets/expected-replies.html
test/assets/json/C4M4TT8JJ/35.json
templates/index.mustache.html
templates/messages.mustache.html
templates/thread.mustache.html
source-repository head
type: git
location: https://github.com/haskell-jp/slack-log
common common
build-depends:
, base >= 4.7 && < 5
, QuickCheck
, aeson
, aeson-pretty
, base >=4.7 && <5
, butcher
, bytestring
, directory
, envy
, extra
, filepath
, mtl
, quickcheck-instances
, safe
, slack-web == 0.3.0.1
, template-haskell
, text
, time
, tz
, unordered-containers
, yaml
default-language: Haskell2010
library
import: common
exposed-modules:
SlackLog.Duration
SlackLog.Html
SlackLog.Pagination
SlackLog.Replies
SlackLog.Types
SlackLog.Util
Web.Slack.Instances
hs-source-dirs:
src
build-depends:
, mustache
, witherable
default-language: Haskell2010
executable slack-log
import: common
main-is: Main.hs
other-modules:
Paths_slack_log
hs-source-dirs:
app
build-depends:
, slack-log
, slack-web
test-suite slack-log-test
import: common
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
SlackLog.DurationSpec
SlackLog.HtmlSpec
SlackLog.PaginationSpec
SlackLog.RepliesSpec
Web.Slack.InstancesSpec
Paths_slack_log
hs-source-dirs:
test
build-depends:
, hspec
, slack-log