File keycode.cabal of Package ghc-keycode
name: keycode
version: 0.2.2
x-revision: 1
synopsis: Maps web browser keycodes to their corresponding keyboard keys
description: Keyboard events in web browsers are often represented as keycodes,
which (1) are difficult to remember, and (2) sometimes vary from
browser to browser. "Web.KeyCode" allows one to look up a key
press's keycode and get a plain English description of the key
that was pressed, to reduce confusion.
homepage: https://github.com/RyanGlScott/keycode
bug-reports: https://github.com/RyanGlScott/keycode/issues
license: BSD3
license-file: LICENSE
author: Ryan Scott
maintainer: Ryan Scott <ryan.gl.scott@gmail.com>
copyright: (C) 2015-2016 Ryan Scott
stability: Experimental
category: Web
build-type: Simple
extra-source-files: CHANGELOG.md, README.md
tested-with: GHC == 7.0.4
, GHC == 7.2.2
, GHC == 7.4.2
, GHC == 7.6.3
, GHC == 7.8.4
, GHC == 7.10.3
, GHC == 8.0.1
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/RyanGlScott/keycode
library
exposed-modules: Web.KeyCode
build-depends: base >= 3 && < 5
, containers
, ghc-prim
if impl(ghc >= 8.0)
build-depends: template-haskell >= 2.11 && < 2.13
hs-source-dirs: src
default-language: Haskell98
ghc-options: -Wall