2015-09-12 12:54:05 +02:00
|
|
|
name: graphql
|
|
|
|
version: 0.1
|
2015-09-12 15:16:28 +02:00
|
|
|
synopsis: Haskell GraphQL implementation
|
2015-09-12 12:54:05 +02:00
|
|
|
description:
|
2015-09-12 13:09:06 +02:00
|
|
|
For now this package provides the data types for the GraphQL language.
|
|
|
|
Further releases will cover more aspects of the GraphQL specification.
|
2015-09-12 12:54:05 +02:00
|
|
|
homepage: https://github.com/jdnavarro/graphql-haskell
|
|
|
|
bug-reports: https://github.com/jdnavarro/graphql-haskell/issues
|
|
|
|
license: BSD3
|
|
|
|
license-file: LICENSE
|
|
|
|
author: Danny Navarro
|
|
|
|
maintainer: j@dannynavarro.net
|
|
|
|
copyright: Copyright (C) 2015 J. Daniel Navarro
|
2015-09-12 13:09:06 +02:00
|
|
|
category: Web
|
2015-09-12 12:54:05 +02:00
|
|
|
build-type: Simple
|
|
|
|
cabal-version: >=1.10
|
2015-09-14 15:48:47 +02:00
|
|
|
tested-with: GHC == 7.10
|
|
|
|
extra-source-files: README.md CHANGELOG.md stack.yaml
|
2015-09-12 12:54:05 +02:00
|
|
|
|
|
|
|
library
|
2015-09-14 17:01:14 +02:00
|
|
|
default-language: Haskell2010
|
|
|
|
ghc-options: -Wall
|
2015-09-12 15:16:28 +02:00
|
|
|
exposed-modules: Data.GraphQL.AST
|
2015-09-13 13:51:37 +02:00
|
|
|
Data.GraphQL.Parser
|
2015-09-12 12:54:05 +02:00
|
|
|
build-depends: base >= 4.7 && < 5,
|
2015-09-13 13:51:37 +02:00
|
|
|
text >=0.11.3.1,
|
|
|
|
attoparsec >=0.10.4.0
|
2015-09-14 17:01:14 +02:00
|
|
|
|
|
|
|
test-suite golden
|
2015-09-12 12:54:05 +02:00
|
|
|
default-language: Haskell2010
|
2015-09-14 17:01:14 +02:00
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
hs-source-dirs: tests
|
|
|
|
main-is: golden.hs
|
2015-09-14 15:48:47 +02:00
|
|
|
ghc-options: -Wall
|
2015-09-14 17:01:14 +02:00
|
|
|
build-depends: base >= 4.6 && <5,
|
|
|
|
bytestring,
|
|
|
|
text,
|
|
|
|
attoparsec,
|
|
|
|
tasty >=0.10,
|
|
|
|
tasty-golden,
|
|
|
|
graphql
|
2015-09-12 12:54:05 +02:00
|
|
|
|
|
|
|
source-repository head
|
|
|
|
type: git
|
|
|
|
location: git://github.com/jdnavarro/graphql-haskell.git
|