servant/servant-jquery.cabal

75 lines
2.0 KiB
Plaintext
Raw Normal View History

name: servant-jquery
2015-01-04 17:41:51 +01:00
version: 0.2.2
synopsis: Automatically derive (jquery) javascript functions to query servant webservices
2014-12-08 12:01:56 +01:00
description:
Automatically derive jquery-based javascript functions to query servant webservices.
.
Example <https://github.com/haskell-servant/servant-jquery/blob/master/examples/counter.hs here> that serves the generated javascript to a webpage that lets you
2014-12-08 12:01:56 +01:00
trigger webservice calls.
license: BSD3
license-file: LICENSE
author: Alp Mestanogullari
maintainer: alpmestan@gmail.com
copyright: 2014 Alp Mestanogullari
category: Web
build-type: Simple
cabal-version: >=1.10
2014-12-08 12:01:56 +01:00
homepage: http://haskell-servant.github.io/
Bug-reports: http://github.com/haskell-servant/servant-jquery/issues
2015-01-04 17:41:51 +01:00
extra-source-files:
CHANGELOG.md
README.md
2014-12-08 12:01:56 +01:00
source-repository head
type: git
location: http://github.com/haskell-servant/servant-jquery.git
flag example
description: Build the example too
manual: True
default: False
library
exposed-modules: Servant.JQuery
other-modules: Servant.JQuery.Internal
build-depends: base >=4.5 && <5, servant >= 0.2.1, lens >= 4, MissingH
hs-source-dirs: src
default-language: Haskell2010
2014-12-08 12:01:56 +01:00
ghc-options: -Wall
executable counter
main-is: counter.hs
ghc-options: -O2 -Wall
hs-source-dirs: examples
2014-12-24 13:55:25 +01:00
if flag(example)
buildable: True
else
buildable: False
build-depends:
aeson
, base
, filepath
, servant >= 0.2.1
, servant-server >= 0.2.1
, servant-jquery >= 0.2.1
, stm
, transformers
, warp
default-language: Haskell2010
2014-12-24 13:55:25 +01:00
test-suite spec
type: exitcode-stdio-1.0
hs-source-dirs: test
ghc-options: -Wall
main-is: Spec.hs
build-depends:
base == 4.*
, lens
2014-12-24 13:55:25 +01:00
, servant-jquery
, servant
, hspec >= 2.0
, hspec-expectations
2014-12-24 13:55:25 +01:00
, language-ecmascript == 0.16.*
default-language: Haskell2010