1name:                emojis
2version:             0.1
3synopsis:            Conversion between emoji characters and their names.
4description:         This package provides functions for converting
5                     emoji names to emoji characters and vice versa.
6                     .
7                     How does it differ from the @emoji@ package?
8                     .
9                     -   It supports a fuller range of emojis, including all those
10                         supported by GitHub
11                     -   It supports lookup of emoji aliases from emoji
12                     -   It uses Text rather than String
13                     -   It has a lighter dependency footprint: in particular, it
14                         does not require aeson
15                     -   It does not require TemplateHaskell
16homepage:            https://github.com/jgm/emojis#readme
17license:             BSD3
18license-file:        LICENSE
19author:              John MacFarlane
20maintainer:          jgm@berkeley.edu
21copyright:           2019 John MacFarlane
22category:            Text
23build-type:          Simple
24extra-source-files:  emoji.json, src/Text/emojis.inc, README.md, changelog.md
25cabal-version:       >=1.10
26
27library
28  hs-source-dirs:      src
29  exposed-modules:     Text.Emoji
30  build-depends:       base >= 4.9 && < 5,
31                       text,
32                       containers
33  default-language:    Haskell2010
34  ghc-options:         -Wall -fno-warn-unused-do-bind
35
36test-suite emojis-test
37  type:                exitcode-stdio-1.0
38  hs-source-dirs:      test
39  main-is:             test.hs
40  build-depends:       base >= 4.9 && < 5,
41                       emojis,
42                       text,
43                       HUnit
44  default-language:    Haskell2010
45  ghc-options:         -Wall -fno-warn-unused-do-bind
46
47source-repository head
48  type:     git
49  location: https://github.com/jgm/emojis
50