packages feed

language-js-0.1.0: language-js.cabal

-- This file has been generated from package.yaml by hpack version 0.21.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: 7591d251e3d3f32efcbaeb9a161dd808d91cb30863aa52efc5609f564b8b9bc6

name:           language-js
version:        0.1.0
synopsis:       javascript parser for es6 and es7.
description:    Please see the README on Github at <https://github.com/diasbruno/language-js#README.md>
category:       Language
homepage:       https://github.com/diasbruno/language-js#readme
bug-reports:    https://github.com/diasbruno/language-js/issues
author:         Bruno Dias <dias.h.bruno@gmail.com>
maintainer:     Bruno Dias <dias.h.bruno@gmail.com>
copyright:      2018 Bruno Dias
license:        BSD3
license-file:   license.md
build-type:     Simple
cabal-version:  >= 1.10

extra-source-files:
    changelog.md
    readme.md

source-repository head
  type: git
  location: https://github.com/diasbruno/language-js

library
  exposed-modules:
      Language.JS.Common
      Language.JS.Operators
      Language.JS.Parser
      Language.JS.Types
  other-modules:
      Paths_language_js
  hs-source-dirs:
      src
  build-depends:
      base >=4.7 && <5
    , parsec
  default-language: Haskell2010

test-suite language-js-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      Paths_language_js
  hs-source-dirs:
      test
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >=4.7 && <5
    , hspec
    , language-js
    , parsec
  default-language: Haskell2010