-
Notifications
You must be signed in to change notification settings - Fork 6
/
psc-ide.cabal
102 lines (98 loc) · 3.5 KB
/
psc-ide.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
name: psc-ide
version: 0.6.1
synopsis: Language support for the PureScript programming language
description: Please see README.md
homepage: http://github.com/kRITZCREEK/psc-ide
license: MIT
license-file: LICENSE
author: Christoph Hegemann
maintainer: christoph.hegemann1337@gmail.com
copyright: 2015 Christoph Hegemann
category: PureScript, Development
build-type: Simple
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: PureScript.Ide
, PureScript.Ide.Command
, PureScript.Ide.Externs
, PureScript.Ide.Error
, PureScript.Ide.CodecJSON
, PureScript.Ide.Pursuit
, PureScript.Ide.Completion
, PureScript.Ide.Matcher
, PureScript.Ide.Filter
, PureScript.Ide.Types
, PureScript.Ide.State
, PureScript.Ide.CaseSplit
, PureScript.Ide.SourceFile
, PureScript.Ide.Watcher
, PureScript.Ide.Reexports
default-language: Haskell2010
build-depends: aeson
, base >= 4.7 && < 5
, bytestring
, containers
, directory
, edit-distance
, either
, filepath
, fsnotify
, http-client
, lens
, lens-aeson
, monad-logger
, mtl
, parsec
, purescript >= 0.8.0.0
, regex-tdfa
, stm
, text
, wreq
default-extensions: OverloadedStrings
ghc-options: -O2
executable psc-ide
hs-source-dirs: client
main-is: Main.hs
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, psc-ide
, mtl
, text
, optparse-applicative
, network
other-modules: Paths_psc_ide
ghc-options: -O2 -Wall
executable psc-ide-server
hs-source-dirs: server
main-is: Main.hs
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, directory
, filepath
, monad-logger
, mtl
, network
, optparse-applicative
, psc-ide
, stm
, text
other-modules: Paths_psc_ide
ghc-options: -threaded -O2 -Wall
test-suite spec
type: exitcode-stdio-1.0
ghc-options: -Wall
hs-source-dirs: test
default-language: Haskell2010
main-is: Spec.hs
other-modules: PureScript.IdeSpec
, PureScript.Ide.FilterSpec
, PureScript.Ide.MatcherSpec
, PureScript.Ide.ReexportsSpec
build-depends: base >= 4.7 && < 5
, containers
, hspec
, monad-logger
, mtl
, psc-ide
, stm