panpipe: e6f8ad24fd5d4dacdb595aaea71cd6792df72b04

     1: name:                panpipe
     2: version:             0.4.0.0
     3: synopsis:            Pandoc filter to execute code blocks
     4: description:         Executes pandoc code blocks annotated with 'pipe'
     5: homepage:            http://chriswarbo.net/projects/activecode
     6: license:             PublicDomain
     7: license-file:        LICENSE
     8: author:              Chris Warburton
     9: maintainer:          chriswarbo@gmail.com
    10: category:            Text
    11: build-type:          Simple
    12: extra-source-files:  README.md
    13: cabal-version:       >=1.10
    14: 
    15: source-repository head
    16:   type:     git
    17:   location: http://chriswarbo.net/git/panpipe.git
    18:                      
    19: library
    20:   hs-source-dirs:      src
    21:   default-language:    Haskell2010
    22:   exposed-modules:     PanPipe
    23:   build-depends:       base         >=4.7
    24:                      , pandoc       >=2.9
    25:                      , pandoc-types ==1.20.*
    26:                      , process      >=1.2
    27:                      , temporary    >=1.3
    28:                      , text         >=1.2
    29:                      , unix         >=2.7
    30: 
    31: executable panpipe
    32:   hs-source-dirs:      panpipe
    33:   main-is:             Main.hs
    34:   default-language:    Haskell2010
    35:   build-depends:       base >=4.7
    36:                      , panpipe
    37: 
    38: test-suite test
    39:   default-language:    Haskell2010
    40:   type:                exitcode-stdio-1.0
    41:   hs-source-dirs:      test
    42:   main-is:             Main.hs
    43:   build-depends:       base             >=4.7
    44:                      , pandoc           >=2.9
    45:                      , panpipe
    46:                      , QuickCheck       >=2.13
    47:                      , tasty            >=1.2
    48:                      , tasty-quickcheck >=0.10
    49:                      , text             >=1.2

Generated by git2html.