packages feed

parser-helper-0.1.0.0: parser-helper.cabal

name:                parser-helper

-- The package version.  See the Haskell package versioning policy (PVP) 
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary:      +-+------- breaking API changes
--                   | | +----- non-breaking API additions
--                   | | | +--- code changes with no API change
version:             0.1.0.0
synopsis:            Prints Haskell parse trees in JSON.

-- A longer description of the package.
description:         Serialize haskell-src-exts parse trees to JSON.
license:             Apache-2.0
license-file:        LICENSE
author:              Peter A. Jonsson
maintainer:          jonsson.peter.a@gmail.com
-- copyright:
category:            Development
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

source-repository head
  type: git
  location: https://github.com/pjonsson/parser-helper

executable parser-helper
  main-is:             Development/Main.hs
  -- other-modules:
  other-extensions:    TemplateHaskell,
                       OverloadedStrings
  build-depends:       base >= 4.6 && <4.7,
                       aeson > 0.7,
                       haskell-src-exts > 1.15 && < 1.16,
                       bytestring > 0.10,
                       text > 1.0
  hs-source-dirs:      src
  default-language:    Haskell2010