corrade-nucleus-nucleons – Blame information for rev 20

Subversion Repositories:
Rev:
Rev Author Line No. Line
20 office 1 name: reload
2 version: 0.1.0.0
3 synopsis: Initial project template from stack
4 Description:
5 The \'cabal\' command-line program simplifies the process of managing
6 Haskell software by automating the fetching, configuration, compilation
7 and installation of Haskell libraries and programs.
8 homepage: https://github.com/jpmoresmau/dbIDE/reload#readme
9 license: BSD3
10 license-file: LICENSE
11 author: JP Moresmau
12 maintainer: jpmoresmau@gmail.com
13 copyright: 2016 JP Moresmau
14 category: Web
15 build-type: Simple
16 -- extra-source-files:
17 cabal-version: >=1.10
18  
19 Flag network-uri
20 description: Get Network.URI from the network-uri package
21 default: True
22  
23 library
24 hs-source-dirs: src
25 exposed-modules: Language.Haskell.Reload
26 build-depends: base >= 4.7 && < 5
27 , aeson
28 , scotty
29 , wai
30 , text
31 , directory
32 , filepath
33 , bytestring
34 , containers
35 , mime-types
36 , transformers
37 , wai-handler-launch
38 , wai-middleware-static
39 , wai-extra
40 , http-types
41 default-language: Haskell2010
42 other-modules: Language.Haskell.Reload.FileBrowser
43 ghc-options: -Wall -O2
44  
45 executable reload-exe
46 hs-source-dirs: app
47 main-is: Main.hs
48 ghc-options: -threaded -O2 -rtsopts -with-rtsopts=-N
49 build-depends: base
50 , reload
51 default-language: Haskell2010
52  
53 test-suite reload-test
54 type: exitcode-stdio-1.0
55 hs-source-dirs: test
56 main-is: Spec.hs
57 build-depends: base
58 , reload
59 , hspec
60 , hspec-wai
61 , hspec-wai-json
62 , aeson
63 , directory
64 , filepath
65 , text
66 , containers
67 , unordered-containers
68 , bytestring
69 , wai-extra
70 ghc-options: -threaded -O2 -rtsopts -with-rtsopts=-N
71 default-language: Haskell2010
72 other-modules: Language.Haskell.Reload.FileBrowserSpec
73 Language.Haskell.ReloadSpec
74  
75 source-repository head
76 type: git
77 location: https://github.com/jpmoresmau/dbIDE/reload