graphql/package.yaml

54 lines
1.1 KiB
YAML
Raw Normal View History

name: graphql
version: 0.3
synopsis: Haskell GraphQL implementation
description:
This package provides a rudimentary parser for the
<https://facebook.github.io/graphql/ GraphQL> language.
homepage: https://github.com/jdnavarro/graphql-haskell
maintainer: j@dannynavarro.net
copyright: Copyright (C) 2015-2019 J. Daniel Navarro
category: Web
github: jdnavarro/graphql-haskell
author:
- Danny Navarro
- Matthías Páll Gissurarson
- Sólrún Halla Einarsdóttir
extra-source-files:
- CHANGELOG.md
- README.md
- LICENSE
- TODO
- docs/tutorial/tutorial.lhs
data-files:
- tests/data/*.graphql
- tests/data/*.min.graphql
dependencies:
- aeson
- base >= 4.7 && < 5
2019-06-21 10:44:58 +02:00
- megaparsec
- text
2019-06-28 11:12:28 +02:00
- transformers
- unordered-containers
library:
2019-06-30 06:07:32 +02:00
source-dirs: src
dependencies:
- scientific
tests:
tasty:
main: tasty.hs
source-dirs: tests
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- graphql
- raw-strings-qq
- tasty
- tasty-hunit