packages feed

duplo-1.6.9: duplo.cabal

name:               duplo
version:            1.6.9
synopsis:           Frontend development build tool
description:        Intuitive, simple building blocks for building composable, completely self-managed web applications
license:            MIT
license-file:       LICENSE
author:             Kenneth Kan
maintainer:         ken@pixbi.com
category:           Web
build-type:         Simple
extra-source-files: README.md tests/Tests.hs
cabal-version:      >=1.10

source-repository head
  type:     git
  location: https://github.com/pixbi/duplo.git

library
  ghc-options        : -Wall
  hs-source-dirs     : src
  default-language   : Haskell2010
  default-extensions : OverloadedStrings
  exposed-modules    : Development.Duplo
                     , Development.Duplo.Component
                     , Development.Duplo.FileList
                     , Development.Duplo.Files
                     , Development.Duplo.Git
                     , Development.Duplo.JavaScript.Order
                     , Development.Duplo.Markups
                     , Development.Duplo.Scripts
                     , Development.Duplo.Server
                     , Development.Duplo.Static
                     , Development.Duplo.Styles
                     , Development.Duplo.Types.AppInfo
                     , Development.Duplo.Types.Builder
                     , Development.Duplo.Types.Config
                     , Development.Duplo.Types.JavaScript
                     , Development.Duplo.Types.Options
                     , Development.Duplo.Utilities
                     , Development.Duplo.Watcher
  build-depends      : base                               == 4.7.*
                     , aeson                              == 0.8.*
                     , aeson-pretty                       == 0.7.*
                     , ansi-terminal                      == 0.5.*
                     , bytestring                         == 0.10.*
                     , containers                         == 0.5.*
                     , directory                          == 1.2.*
                     , executable-path                    == 0.0.*
                     , filepath                           == 1.3.*
                     , filepather                         == 0.3.*
                     , fsnotify                           == 0.1.*
                     , http-types                         == 0.8.*
                     , language-javascript                == 0.5.*
                     , lens                               == 4.5.*
                     , mtl                                == 2.2.*
                     , regex-compat                       == 0.95.*
                     , scotty                             == 0.9.*
                     , shake                              == 0.14.*
                     , system-fileio                      == 0.3.*
                     , text                               == 1.1.*
                     , text-format                        == 0.3.*
                     , transformers                       == 0.4.*
                     , unordered-containers               == 0.2.*
                     , utf8-string                        == 0.3.*
                     , wai                                == 3.0.*
                     , warp                               == 3.0.*

executable duplo
  main-is            : CLI.hs
  ghc-options        : -rtsopts
  hs-source-dirs     : src
  default-language   : Haskell2010
  default-extensions : OverloadedStrings
  build-depends      : base                 == 4.7.*
                     , aeson                == 0.8.*
                     , aeson                == 0.8.*
                     , aeson-pretty         == 0.7.*
                     , ansi-terminal        == 0.5.*
                     , base64-bytestring    == 1.0.*
                     , bytestring           == 0.10.*
                     , containers           == 0.5.*
                     , directory            == 1.2.*
                     , duplo                == 1.6.*
                     , filepath             == 1.3.*
                     , filepather           == 0.3.*
                     , fsnotify             == 0.1.*
                     , http-types           == 0.8.*
                     , language-javascript  == 0.5.*
                     , lens                 == 4.5.*
                     , mtl                  == 2.2.*
                     , process              == 1.2.*
                     , regex-compat         == 0.95.*
                     , scotty               == 0.9.*
                     , shake                == 0.14.*
                     , system-filepath      == 0.4.*
                     , text                 == 1.1.*
                     , text-format          == 0.3.*
                     , transformers         == 0.4.*
                     , unordered-containers == 0.2.*
                     , wai                  == 3.0.*
                     , warp                 == 3.0.*

test-suite tests
  main-is             : Tests.hs
  ghc-options         : -Wall
  hs-source-dirs      : tests
  default-language    : Haskell2010
  type                : exitcode-stdio-1.0
  build-depends       : base
                      , duplo
                      , hspec              == 2.1.*