-
Notifications
You must be signed in to change notification settings - Fork 14
/
elm-debugger.cabal
42 lines (37 loc) · 1.33 KB
/
elm-debugger.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: elm-debugger
version: 0.1
synopsis: Server for using the reactive debugger.
description: Debug Elm code by visualizing the signal graph, pausing/rewind/replay, and hotswapping.
homepage: http://elm-lang.org/
license: BSD3
license-file: LICENSE
author: Evan Czaplicki
maintainer: [email protected]
copyright: (c) 2014 Evan Czaplicki
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
extra-tmp-files: public/build
, public/cache
Build-type: Custom
executable elm-debugger
main-is: Server.hs
other-extensions: OverloadedStrings
ghc-options: -threaded -O2 -rtsopts "-with-rtsopts=-N -I4"
build-depends: base
, blaze-html
, blaze-markup
, bytestring
, containers
, cmdargs
, directory
, Elm >= 0.13
, filepath
, HTTP
, mtl
, process
, snap-core
, snap-server
, unordered-containers
hs-source-dirs: server
default-language: Haskell2010