-
Notifications
You must be signed in to change notification settings - Fork 0
/
slack-archive.cabal
91 lines (86 loc) · 1.85 KB
/
slack-archive.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
cabal-version: 2.4
name: slack-archive
version: 0.1.0.0
author: Rintaro Itokawa
maintainer: [email protected]
license: MIT
license-file: LICENSE
build-type: Simple
extra-source-files:
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/suzuka-kosen-festa/slack-archive
common common
build-depends:
, base >= 4.7 && < 5
, QuickCheck
, aeson
, aeson-pretty
, base >=4.7 && <5
, butcher
, bytestring
, directory
, envy
, exceptions
, extra
, filepath
, mtl
, quickcheck-instances
, safe
, slack-web
, template-haskell
, text
, time
, tz
, unordered-containers
, yaml
default-language: Haskell2010
library
import: common
exposed-modules:
SlackArchive.Duration
SlackArchive.Html
SlackArchive.Pagination
SlackArchive.Replies
SlackArchive.Types
SlackArchive.Util
Web.Slack.Instances
hs-source-dirs:
src
build-depends:
, mustache
, witherable
default-language: Haskell2010
executable slack-archive
import: common
main-is: Main.hs
other-modules:
Paths_slack_archive
hs-source-dirs:
app
build-depends:
, slack-archive
, slack-web
test-suite slack-archive-test
import: common
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
SlackArchive.DurationSpec
SlackArchive.HtmlSpec
SlackArchive.PaginationSpec
SlackArchive.RepliesSpec
Web.Slack.InstancesSpec
Paths_slack_archive
hs-source-dirs:
test
build-depends:
, hspec
, slack-archive