graphql/package.yaml

55 lines
1.1 KiB
YAML
Raw Normal View History

name: graphql
2019-07-06 07:57:18 +02:00
version: 0.4.0.0
synopsis: Haskell GraphQL implementation
description:
This package provides a rudimentary parser for the
<https://graphql.github.io/graphql-spec/June2018/ GraphQL> language.
homepage: https://github.com/jdnavarro/graphql-haskell
2019-07-06 07:57:18 +02:00
maintainer: belka@caraus.de
github: caraus-ecms/graphql
category: Language
copyright:
- (c) 2019 Eugen Wissner
- (c) 2015-2017 J. Daniel Navarro
author:
2019-07-06 07:57:18 +02:00
- Danny Navarro <j@dannynavarro.net>
- Matthías Páll Gissurarson <mpg@mpg.is>
- Sólrún Halla Einarsdóttir <she@mpg.is>
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
library:
2019-06-30 06:07:32 +02:00
source-dirs: src
dependencies:
- unordered-containers
tests:
tasty:
main: tasty.hs
source-dirs: tests
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- graphql
- raw-strings-qq
- tasty
- tasty-hunit