graphql/package.yaml

58 lines
1.2 KiB
YAML
Raw Normal View History

name: graphql
2019-12-23 06:35:32 +01:00
version: 0.6.1.0
synopsis: Haskell GraphQL implementation
description:
This package provides a rudimentary parser for the
<https://graphql.github.io/graphql-spec/June2018/ GraphQL> language.
2019-07-06 07:57:18 +02:00
maintainer: belka@caraus.de
github: caraus-ecms/graphql
category: Language
copyright:
2020-01-21 23:27:21 +01:00
- (c) 2019-2020 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
- docs/tutorial/tutorial.lhs
data-files:
- tests/data/*.graphql
- tests/data/*.min.graphql
dependencies:
- aeson
- base >= 4.7 && < 5
- containers
2019-06-21 10:44:58 +02:00
- megaparsec
- parser-combinators
- text
2019-06-28 11:12:28 +02:00
- transformers
2019-10-19 10:00:25 +02:00
- unordered-containers
library:
2019-06-30 06:07:32 +02:00
source-dirs: src
other-modules:
- Language.GraphQL.Execute.Transform
- Language.GraphQL.Type.Directive
tests:
tasty:
2019-07-10 05:57:35 +02:00
main: Spec.hs
source-dirs: tests
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- graphql
2019-07-10 05:57:35 +02:00
- hspec
- hspec-expectations
2019-09-27 10:50:38 +02:00
- hspec-megaparsec
- raw-strings-qq