This repository has been archived by the owner on Aug 23, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
/
elm-repl.cabal
99 lines (80 loc) · 1.79 KB
/
elm-repl.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
Name: elm-repl
Version: 0.18
Synopsis:
a REPL for Elm
Description:
A read-eval-print-loop (REPL) for evaluating Elm expressions,
definitions, ADTs, and module imports. This tool is meant to
help you play with small expressions and interact with
functions deep inside of larger projects.
Homepage:
https://github.com/elm-lang/elm-repl
License: BSD3
License-file: LICENSE
Author: Evan Czaplicki
Maintainer: [email protected]
Copyright: Copyright: (c) 2011-2014 Evan Czaplicki
Category: Tool
Build-type: Simple
Extra-source-files: changelog.txt
Cabal-version: >=1.8
source-repository head
type: git
location: git://github.com/elm-lang/elm-repl.git
Executable elm-repl
ghc-options:
-W
Hs-Source-Dirs:
src
Main-is:
Main.hs
other-modules:
Completion,
Environment,
Eval,
Eval.Code,
Eval.Meta,
Flags,
Loop,
Read
Build-depends:
base >=4.2 && <5,
binary,
bytestring >= 0.9 && < 0.11,
bytestring-trie >= 0.2.2 && < 0.3,
cmdargs >= 0.7 && < 0.11,
containers,
directory >= 1 && < 2,
elm-compiler == 0.18,
elm-package,
filepath >= 1 && < 2,
haskeline >= 0.7 && < 0.8,
mtl >= 2.2.1 && < 3,
parsec >= 3.1.1 && < 3.5,
text
Test-Suite test
Type:
exitcode-stdio-1.0
ghc-options:
-W
Hs-Source-Dirs:
tests, src
Main-is:
Main.hs
build-depends:
test-framework,
test-framework-hunit,
test-framework-quickcheck2 >= 0.3,
HUnit,
QuickCheck,
base >=4.2 && <5,
bytestring >= 0.9 && < 0.11,
bytestring-trie >= 0.2.2 && < 0.3,
cmdargs >= 0.7 && < 0.11,
directory >= 1 && < 2,
elm-compiler == 0.18,
elm-package,
filepath >= 1 && < 2,
haskeline >= 0.7 && < 0.8,
mtl >= 2 && < 3,
parsec >= 3.1.1 && < 3.5