1
1
mirror of https://github.com/thma/LtuPatternFactory.git synced 2024-11-30 02:03:47 +03:00
LtuPatternFactory/LtuPatternFactory.cabal

102 lines
3.3 KiB
Plaintext
Raw Normal View History

2018-10-26 23:33:53 +03:00
name: LtuPatternFactory
version: 0.1.0.0
synopsis: Comparing OO Design Patterns with Functional Programming concepts
-- description:
homepage: https://github.com/thma/LtuPatternFactory#readme
license: Apache-2.0
license-file: LICENSE
author: Thomas Mahler
maintainer: thma@apache.org
copyright: 2018 Thomas Mahler
category: Programming
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
executable LtuPatternFactory
hs-source-dirs: src
2018-11-17 19:16:39 +03:00
other-modules: AbstractFactory
, Adapter
2018-10-26 23:33:53 +03:00
, Builder
, Composite
, Iterator
, JsonPersistence
2018-10-26 23:33:53 +03:00
, NullObject
, Pipeline
, Singleton
, Strategy
, TemplateMethod
, Visitor
2018-11-17 19:16:39 +03:00
, Coerce
, IdiomBrackets
2018-12-29 19:04:55 +03:00
, Interpreter
2019-01-05 20:22:43 +03:00
, Infinity
, MapReduce
2018-12-02 23:57:29 +03:00
, DependencyInjection
, CheapskateRenderer
, CMarkGFMRenderer
2019-01-13 23:08:13 +03:00
, AspectPascal
, MiniPascal
, HigherOrder
2019-01-05 20:22:43 +03:00
2018-10-26 23:33:53 +03:00
main-is: Main.hs
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, containers
, mtl
2018-11-17 19:16:39 +03:00
, aeson
, aeson-pretty
, text
, directory
, bytestring
2018-11-26 23:02:21 +03:00
, tagged
2018-12-02 23:57:29 +03:00
, cmark-gfm
, cheapskate
, blaze-html
2019-01-05 20:22:43 +03:00
, parallel
2019-01-27 12:21:29 +03:00
, comonad
2018-11-26 23:02:21 +03:00
test-suite LtuPatternFactory-Demo
type: exitcode-stdio-1.0
other-modules: AbstractFactory
, Adapter
, Builder
, Composite
, Iterator
, JsonPersistence
, NullObject
, Pipeline
, Singleton
, Strategy
, TemplateMethod
, Visitor
, Coerce
, IdiomBrackets
2018-12-29 19:04:55 +03:00
, Interpreter
2019-01-05 20:22:43 +03:00
, Infinity
, MapReduce
2018-12-02 23:57:29 +03:00
, DependencyInjection
, CheapskateRenderer
, CMarkGFMRenderer
2019-01-13 23:08:13 +03:00
, AspectPascal
, MiniPascal
, HigherOrder
2018-11-26 23:02:21 +03:00
hs-source-dirs: src
main-is: Main.hs
build-depends: base >= 4.7 && < 5
2018-12-02 23:57:29 +03:00
, containers
, mtl
, aeson
, aeson-pretty
, text
, directory
, bytestring
, tagged
, cmark-gfm
, cheapskate
, blaze-html
2019-01-05 20:22:43 +03:00
, parallel
2019-01-27 12:21:29 +03:00
, comonad
2018-11-26 23:02:21 +03:00
default-language: Haskell2010