name: css-syntax version: 0.0.8 synopsis: This package implments a parser for the CSS syntax description: See https://drafts.csswg.org/css-syntax/ license: MIT license-file: LICENSE author: Tomas Carnecky maintainer: tomas.carnecky@gmail.com category: Data build-type: Simple cabal-version: >=1.10 source-repository head type: git location: git://github.com/wereHamster/haskell-css-syntax.git library hs-source-dirs: src default-language: Haskell2010 exposed-modules: Data.CSS.Syntax.Tokens build-depends: base >=4 && <5 , attoparsec >=0.13 , bytestring , scientific , text ghc-options: -Wall test-suite spec hs-source-dirs: test src default-language: Haskell2010 ghc-options: -Wall type: exitcode-stdio-1.0 main-is: Test.hs other-modules: Data.CSS.Syntax.Tokens build-depends: base >=4 && <5 , attoparsec >=0.13 , bytestring , scientific , text , hspec , directory