summaryrefslogtreecommitdiff
path: root/package.yaml
blob: 96014e7b4f6525aab1e87c5708e76e8bc1ee95aa (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
53
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
- attoparsec
- base >= 4.7 && < 5
- semigroups
- text
- unordered-containers

library:
  source-dirs: .
  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