packages feed

inspector-wrecker-0.1.0.0: inspector-wrecker.cabal

name:                inspector-wrecker
version:             0.1.0.0
synopsis:            Create benchmarks from the HAR files
description:         
  inspector-wrecker is a library and executable for creating HTTP benchmarks from
  a HAR file dump from Chrome's Inspector. 
  
  The executable exposes the wrecker options and additionally takes in a path to 
  a HAR file.
  
  The library exposes a single function, 'runHar', which produces a function 
  'wrecker''s library can use for benchmarks.
   
homepage:            https://github.com/skedgeme/inspector-wrecker#readme
license:             BSD3
license-file:        LICENSE
author:              Jonathan Fischoff
maintainer:          jonathangfischoff@gmail.com
copyright:           2016 skedge.me
category:            Web
build-type:          Simple
-- extra-source-files:
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules: Wrecker.Inspector.HAR
                 , Wrecker.Inspector.Options
                 , Wrecker.Inspector.Main
                 , Wrecker.Inspector
  build-depends: base >= 4.7 && < 5
               , wrecker
               , optparse-applicative
               , http-client
               , http-types
               , time
               , text
               , bytestring
               , case-insensitive
               , aeson
               , http-client-tls >= 0.3.3 && < 0.4
               , connection
               , data-default
  default-language:    Haskell2010

executable inspector-wrecker-exe
  main-is:             src/Main.hs
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  build-depends:       base
                     , inspector-wrecker
  default-language:    Haskell2010

test-suite inspector-wrecker-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , inspector-wrecker
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010