keycode-0.1: keycode.cabal
name: keycode
version: 0.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@ku.edu>
copyright: (C) 2015 Ryan Scott
stability: Experimental
category: Web
build-type: Simple
extra-source-files: CHANGELOG.md, README.md
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/RyanGlScott/keycode.git
library
exposed-modules: Web.KeyCode
build-depends: base >= 3 && < 5
, containers
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall