servant/servant-js/servant-js.cabal

96 lines
3.0 KiB
Plaintext
Raw Permalink Normal View History

name: servant-js
2016-04-07 12:24:29 +02:00
version: 0.6.1
synopsis: Automatically derive javascript functions to query servant webservices.
2014-12-08 12:01:56 +01:00
description:
Automatically derive javascript functions to query servant webservices.
2014-12-08 12:01:56 +01:00
.
Supports deriving functions using vanilla javascript AJAX requests, Angulari, Axios or JQuery.
.
You can find an example <https://github.com/haskell-servant/servant/blob/master/servant-js/examples/counter.hs here>
2015-04-20 15:55:41 +02:00
which serves the generated javascript to a webpage that allows you to trigger
webservice calls.
2015-04-20 16:00:51 +02:00
.
<https://github.com/haskell-servant/servant/blob/master/servant-js/CHANGELOG.md CHANGELOG>
license: BSD3
license-file: LICENSE
author: Servant Contributors
maintainer: haskell-servant-maintainers@googlegroups.com
copyright: 2015-2016 Servant Contributors
category: Web
build-type: Simple
cabal-version: >=1.10
2014-12-08 12:01:56 +01:00
homepage: http://haskell-servant.github.io/
2015-04-20 15:55:41 +02:00
Bug-reports: http://github.com/haskell-servant/servant/issues
2015-01-04 17:41:51 +01:00
extra-source-files:
include/*.h
2015-01-04 17:41:51 +01:00
CHANGELOG.md
README.md
2014-12-08 12:01:56 +01:00
source-repository head
type: git
2015-04-20 15:55:41 +02:00
location: http://github.com/haskell-servant/servant.git
flag example
description: Build the example too
manual: True
default: False
library
exposed-modules: Servant.JS
Servant.JS.Angular
2015-07-27 16:29:08 +02:00
Servant.JS.Axios
Servant.JS.Internal
Servant.JS.JQuery
Servant.JS.Vanilla
build-depends: base >= 4.5 && <5
2016-03-12 10:45:04 +01:00
, base-compat >= 0.9
, charset >= 0.3
, lens >= 4
2016-04-01 15:19:05 +02:00
, servant-foreign == 0.6.*
, text >= 1.2 && < 1.3
hs-source-dirs: src
default-language: Haskell2010
2014-12-08 12:01:56 +01:00
ghc-options: -Wall
2015-12-27 17:54:29 +01:00
include-dirs: include
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: base >= 4.7 && < 5
2016-02-18 22:45:05 +01:00
, aeson >= 0.7 && < 0.12
, filepath >= 1
, lens >= 4
2016-04-01 15:19:05 +02:00
, servant == 0.6.*
, servant-server == 0.6.*
, servant-js
, 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
2015-09-23 18:26:05 +02:00
other-modules:
Servant.JSSpec
Servant.JSSpec.CustomHeaders
build-depends: base
2016-03-12 10:45:04 +01:00
, base-compat
, hspec >= 2.1.8
, hspec-expectations
, language-ecmascript >= 0.16
, lens
, servant
, servant-js
, text
default-language: Haskell2010