summaryrefslogtreecommitdiff
path: root/package.yaml
blob: a23dac23a94bc12ad3ccd0a28c8b2fdba76f8246 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name:                graphql
version:             0.5.1.0
synopsis:            Haskell GraphQL implementation
description:
  This package provides a rudimentary parser for the
  <https://graphql.github.io/graphql-spec/June2018/ GraphQL> language.
maintainer:          belka@caraus.de
github:              caraus-ecms/graphql
category:            Language
copyright:
- (c) 2019 Eugen Wissner
- (c) 2015-2017 J. Daniel Navarro
author:
- 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
- megaparsec
- text
- transformers
- unordered-containers

library:
  source-dirs: src

tests:
  tasty:
    main: Spec.hs
    source-dirs: tests
    ghc-options:
    - -threaded
    - -rtsopts
    - -with-rtsopts=-N
    dependencies:
    - graphql
    - hspec
    - hspec-expectations
    - hspec-megaparsec
    - raw-strings-qq