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
|
name: css-text
version: 0.1.2.2
license: MIT
license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com>
maintainer: Michael Snoyman <michael@snoyman.com>, Greg Weber <greg@gregweber.info>
synopsis: CSS parser and renderer.
category: Web, Yesod
stability: Stable
cabal-version: >= 1.8
build-type: Simple
homepage: http://www.yesodweb.com/
extra-source-files: runtests.hs README.md ChangeLog.md
library
build-depends: base >= 4 && < 5
, text >= 0.11
, attoparsec >= 0.10.2.0
exposed-modules: Text.CSS.Parse
Text.CSS.Render
ghc-options: -Wall
test-suite runtests
type: exitcode-stdio-1.0
main-is: runtests.hs
build-depends: base >= 4 && < 5
, text >= 0.11
, attoparsec >= 0.10.2.0
, hspec >= 1.3
, QuickCheck
source-repository head
type: git
location: https://github.com/yesodweb/css-text.git
|