-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.yaml
64 lines (58 loc) · 1.34 KB
/
package.yaml
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
54
55
56
57
58
59
60
61
62
63
name: servant-graphql
version: 0.1.0.0
synopsis:
description: Please see README.md
homepage: http://github.com/jkarni/servant-graphql#readme
license: BSD3
license-file: LICENSE
author: Julian K. Arni
maintainer: [email protected]
copyright: (c) Julian K. Arni
github: jkarni/servant-graphql
tested-with: GHC == 7.10.2, GHC == 8.0.1
ghc-options: -Wall
dependencies:
- base >= 4.7 && < 4.10
- text
- servant
- servant-server
- containers
- aeson
default-extensions:
- AutoDeriveTypeable
- ConstraintKinds
- DataKinds
- DefaultSignatures
- DeriveFoldable
- DeriveFunctor
- DeriveGeneric
- DeriveTraversable
- FlexibleContexts
- FlexibleInstances
- FunctionalDependencies
- GADTs
- KindSignatures
- MultiParamTypeClasses
- OverloadedStrings
- RankNTypes
- ScopedTypeVariables
- TypeFamilies
- TypeOperators
library:
source-dirs: src
other-modules: []
tests:
spec:
main: Spec.hs
source-dirs: test
dependencies:
- servant-graphql
- hspec > 2 && < 3
- QuickCheck >= 2.8 && < 2.9
doctest:
main: Doctest.hs
source-dirs: test
dependencies:
- doctest >= 0.9 && < 0.12
- Glob >= 0.7 && < 0.8
- yaml == 0.8.*