-
Notifications
You must be signed in to change notification settings - Fork 2
/
structured-script-lang.cabal
61 lines (54 loc) · 2.13 KB
/
structured-script-lang.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
Name: structured-script-lang
Version: 0.3.2
Author: Scott Murphy<[email protected]>
Maintainer: Scott Murphy<[email protected]>
License: BSD3
License-File: LICENSE
Synopsis: Structured Script package from plow
Description: structrued script lang from plow
Cabal-Version: >= 1.10
Build-Type: Simple
Library
HS-Source-Dirs: src
GHC-Options: -Wall
Default-Language: Haskell2010
Exposed-Modules: Language.StructuredScript
Language.StructuredScript.Parsers
Other-Modules: Language.StructuredScript.Internal
Build-Depends:
base >= 4 && < 5
, parsec
, text
, transformers
, unordered-containers
, vector
, QuickCheck
Test-Suite spec
Type: exitcode-stdio-1.0
Default-Language: Haskell2010
Hs-Source-Dirs: test
,src
Ghc-Options: -Wall
Main-Is: Spec.hs
Other-Modules: Language.StructuredScript
Language.StructuredScript.Parsers
Language.StructuredScript.ParsersSpec
Language.StructuredScriptSpec
Build-Depends: base >= 4 && < 5
, hspec
, parsec
, text
, transformers
, unordered-containers
, vector
, QuickCheck
Executable structured-script-lang
main-is: Main.hs
Default-Language: Haskell2010
HS-Source-Dirs: src
build-depends: base >= 4 && < 5
, text
ghc-options: -threaded -O2 -rtsopts
Source-Repository head
Type: git
Location: https://github.com/plow-technologies/structured-script