swagger-test-0.1.0: swagger-test.cabal
name: swagger-test
version: 0.1.0
synopsis: Testing of Swagger APIs
description: This package provides a library and executable tool
that supports testing APIs specified with Swagger. It
allows one to generate arbitrary Swagger requests for any
given specification.
homepage: https://github.com/rodrigosetti/swagger-test
bug-reports: https://github.com/rodrigosetti/swagger-test/issues
license: BSD3
license-file: LICENSE
author: Rodrigo Setti
maintainer: rodrigosetti@gmail.com
copyright: 2017 Rodrigo Setti. All rights reserved
category: Testing
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
stability: alpha
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall
exposed-modules: Test.Swagger
, Test.Swagger.Gen
, Test.Swagger.Print
, Test.Swagger.Request
, Test.Swagger.Types
, Test.Swagger.Validate
build-depends: base >= 4.7 && < 5
, QuickCheck == 2.10.*
, aeson
, attoparsec
, binary
, bytestring
, case-insensitive
, filepath
, http-client
, http-client-tls
, http-media
, http-types
, insert-ordered-containers
, lens
, scientific
, swagger2
, syb
, text
, unordered-containers
, vector
executable swagger-test
hs-source-dirs: app
main-is: Main.hs
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, bytestring
, swagger-test
, lens
, text
, optparse-applicative
, swagger2
, aeson
, random
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/rodrigosetti/swagger-test