-
Notifications
You must be signed in to change notification settings - Fork 1
/
jsscript.cabal
87 lines (79 loc) · 1.85 KB
/
jsscript.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
cabal-version: 2.4
name: jsscript
version: 0.1.0.0
synopsis: A simple scripting language
-- description:
homepage: https://github.com/morrowm/jsscript
bug-reports: https://github.com/morrowm/jsscript/issues
license: BSD-3-Clause
license-file: LICENSE
author: Morrow
maintainer: [email protected]
-- copyright:
category: Language
extra-source-files:
CHANGELOG.md
, stdlib/*
common extensions
default-extensions:
OverloadedStrings
, LambdaCase
, TypeApplications
common options
ghc-options:
-Wall
library
import:
extensions
, options
exposed-modules:
Language.JSScript
, Language.JSScript.AST
, Language.JSScript.Parser
, Language.JSScript.Interpreter
-- other-modules:
-- other-extensions:
build-depends: base ^>=4.13.0.0
, text
, containers
, parsec
, transformers
, haskeline >= 0.8
, file-embed
, vector
hs-source-dirs: src
default-language: Haskell2010
executable jsscript
import:
extensions
, options
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base ^>=4.13.0.0, jsscript
hs-source-dirs: app
default-language: Haskell2010
executable jssbot
import:
extensions
, options
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base ^>=4.13.0.0
, jsscript
, discord-haskell
, transformers
, text
, parsec
hs-source-dirs: bot
default-language: Haskell2010
test-suite jsscript-test
import:
extensions
, options
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: MyLibTest.hs
build-depends: base ^>=4.13.0.0