-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoHm.cabal
More file actions
52 lines (50 loc) · 1.3 KB
/
oHm.cabal
File metadata and controls
52 lines (50 loc) · 1.3 KB
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
43
44
45
46
47
48
49
50
51
52
-- Initial bellringer.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: oHm
version: 0.1.0.1
author: Ben Ford
maintainer: ben@perurbis.com
copyright: Ben Ford 2014–2015
license: BSD3
license-file: LICENSE.txt
-- category:
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
Library
exposed-modules:
Ohm.Component
Ohm.HTML
Ohm.SocketIO
Ohm.XHRIO
Ohm.DOMEvent
Ohm.KeyMaster
ghc-options: -Wall
-- other-modules:
other-extensions: ForeignFunctionInterface, GeneralizedNewtypeDeriving, OverloadedStrings
build-depends:
base >=4.7 && <5
, aeson > 0.8
, bytestring >= 0.10.4.1
, containers >=0.5 && <0.6
, contravariant >= 1.2
, ghcjs-base >= 0.1
, ghcjs-dom >=0.1.1.1
, ghcjs-prim >= 0.1.0.0
, lens >= 4.6.0.1
, mtl >= 2.2.1
, mvc >= 1.0.1
, pipes >= 4.0
, pipes-concurrency >= 2.0
, profunctors >= 4.3.2
, split >= 0.2.2
, stm >=2.4 && <2.5
, time > 1.4
, transformers >= 0.4.1.0
, virtual-dom
hs-source-dirs: src
js-sources:
vendor/socket.io.js
vendor/underscore-min.js
vendor/keymaster.js
default-language: Haskell2010