packages feed

slugify-0.1.0.0: slugify.cabal

name:                slugify
version:             0.1.0.0
synopsis: Convert text into slugs.
description: Convert a 'Text' object into a visually pleasant URL component.
homepage:            https://github.com/hapytex/slugify#readme
license:             BSD3
license-file:        LICENSE
author:              Willem Van Onsem
maintainer:          hapytexeu+gh@gmail.com
copyright:           2020 Willem Van Onsem
category:            utils
build-type:          Simple
extra-source-files:
    README.md
  , CHANGELOG.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:
      Text.Slugify
  build-depends:
      base >= 4.7 && < 5
    , text >= 0.1
    , unicode-transforms >= 0.1.0.1
  default-language:    Haskell2010

test-suite gulsify
  type:                exitcode-stdio-1.0
  main-is:             Main.hs
  hs-source-dirs:      test
  other-modules:
      Text.SlugifySpec
  build-depends:
      base
    , slugify
    , hspec ==2.*
    , QuickCheck >=2.13 && <2.14
    , text >= 0.1
  build-tool-depends: hspec-discover:hspec-discover == 2.*
  default-language:    Haskell2010
  default-extensions:
      BlockArguments
    , OverloadedStrings
  ghc-options:
    -Wall -Wcompat -Wcompat
    -Wincomplete-record-updates
    -Wincomplete-uni-patterns
    -Wredundant-constraints


source-repository head
  type:     git
  location: https://github.com/hapytex/slugify