forked from UCSD-PL/language-ecmascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
language-ecmascript.cabal
117 lines (112 loc) · 3.39 KB
/
language-ecmascript.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
Name: language-ecmascript-pp
Version: 0.14
Cabal-Version: >= 1.10
Copyright: (c) 2007-2012 Brown University, (c) 2008-2010 Claudiu Saftoiu,
(c) 2012-2013 Stevens Institute of Technology
License: BSD3
License-file: LICENSE
Author: Andrey Chudnov, Arjun Guha, Spiridon Aristides Eliopoulos,
Joe Gibbs Politz, Claudiu Saftoiu
Maintainer: Andrey Chudnov <oss@chudnov.com>
Homepage: http://github.com/jswebtools/language-ecmascript
Bug-reports: http://github.com/jswebtools/language-ecmascript/issues
Stability: experimental
Tested-with: GHC==7.4.1, GHC==7.6.3
Extra-Source-Files: tests/parse-pretty/*.js, CHANGELOG
Category: Language
Build-Type: Simple
Synopsis: JavaScript analysis tools
Description:
Some tools for working with ECMAScript 3 (popularly known as JavaScript).
Includes a parser, pretty-printer, and basic building blocks for more
sophisticated tools.
Source-repository head
type: git
location: git://github.com/jswebtools/language-ecmascript.git
Source-repository this
type: git
location: git://github.com/jswebtools/language-ecmascript.git
tag: 0.14
Library
Hs-Source-Dirs:
src
Build-Depends:
base >= 4 && < 5,
mtl >= 1.1.0.1,
parsec < 3.2.0,
pretty >= 0.1,
containers >= 0.1,
syb >= 0.1,
uniplate >= 1.6 && <1.7,
data-default >= 0.4 && <0.6,
QuickCheck >= 2.5,
template-haskell,
charset >= 0.3.2.1,
unordered-containers,
hashable,
-- hashable < 1.2,
bytestring,
aeson <= 0.6.1.0,
vector,
text
ghc-options:
-fwarn-incomplete-patterns
Exposed-Modules:
Language.ECMAScript3
Language.ECMAScript3.Text.Parsec.Token
Language.ECMAScript3.Lexer
Language.ECMAScript3.Parser
Language.ECMAScript3.PrettyPrint
Language.ECMAScript3.Syntax
Language.ECMAScript3.Syntax.Annotations
Language.ECMAScript3.Syntax.Arbitrary
-- Language.ECMAScript3.Syntax.QuasiQuote
Language.ECMAScript3.Analysis.Environment
Language.ECMAScript3.Analysis.LabelSets
Language.ECMAScript3.Parser.Type
Language.ECMAScript3.Parser.State
Default-Extensions:
DeriveDataTypeable, ScopedTypeVariables, DeriveFunctor, DeriveFoldable, DeriveTraversable, FlexibleContexts
Default-Language: Haskell2010
Test-Suite unittest
Hs-Source-Dirs: src
Type: exitcode-stdio-1.0
Main-Is: UnitTest.hs
Build-Depends:
base >= 4 && < 5,
mtl >= 1.1.0.1,
parsec < 3.2.0,
pretty >= 0.1,
containers >= 0.1,
syb >= 0.1,
directory,
filepath,
HUnit,
data-default >=0.4 && <0.6,
QuickCheck >= 2.5,
charset >= 0.3.2.1
Default-Extensions: DeriveDataTypeable, ScopedTypeVariables, DeriveFunctor, DeriveFoldable, DeriveTraversable, FlexibleContexts
Default-Language: Haskell2010
ghc-options:
-fwarn-incomplete-patterns
Test-Suite prettytest
Hs-Source-Dirs: src
Type: exitcode-stdio-1.0
Main-Is: PrettyTest.hs
Build-Depends:
base >= 4 && < 5,
mtl >= 1.1.0.1,
parsec < 3.2.0,
pretty >= 0.1,
containers >= 0.1,
syb >= 0.1,
directory,
filepath,
HUnit,
data-default >=0.4 && <0.6,
QuickCheck >= 2.5,
uniplate >= 1.6 && <1.7
Default-Extensions: DeriveDataTypeable, ScopedTypeVariables, DeriveFunctor, DeriveFoldable, DeriveTraversable, FlexibleContexts
Default-Language: Haskell2010
ghc-options:
-fwarn-incomplete-patterns