-
Notifications
You must be signed in to change notification settings - Fork 0
/
language-ecmascript-analysis.cabal
48 lines (43 loc) · 2.05 KB
/
language-ecmascript-analysis.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
-- Initial language-ecmascript-analysis.cabal generated by cabal init. For
-- further documentation, see http://haskell.org/cabal/users-guide/
name: language-ecmascript-analysis
version: 5.0.0
cabal-version: >= 1.10
copyright: (c) 2007-2012 Brown University, (c) 2008-2010 Claudiu Saftoiu, (c) 2012-2015 Stevens Institute of Technology, (c) 2016 Andrey Chudnov
synopsis: JavaScript static analysis library.
description: JavaScript static analysis library. Includes label set and lexical environment analyses. The package versions follow Semantic Versioning model (semver.org).
license: BSD3
license-file: LICENSE
author: Andrey Chudnov, Arjun Guha, Spiridon Aristides Eliopoulos,
Joe Gibbs Politz, Claudiu Saftoiu
maintainer: Andrey Chudnov <[email protected]>
homepage: http://github.com/jswebtools/language-ecmascript-analysis
bug-reports: http://github.com/jswebtools/language-ecmascript-analysis/issues
category: Language
build-type: Simple
stability: experimental
Tested-with: GHC==7.4.2, GHC==7.6.3, GHC==7.8.3, GHC==7.10.3
Extra-Source-Files: CHANGELOG
source-repository head
type: git
location: git://github.com/jswebtools/language-ecmascript-analysis.git
source-repository this
type: git
location: git://github.com/jswebtools/language-ecmascript-analysis.git
tag: 5.0.0
Library
Build-Depends: base >= 4 && < 5
, language-ecmascript >= 5 && < 6
, uniplate >= 1.6 && < 1.7
, parsec >= 3 && < 4
, containers >= 0.1 && < 0.6
, lens-simple
hs-source-dirs:
src
exposed-modules:
Language.ECMAScript5.Analysis.LexicalEnvironment
Language.ECMAScript5.Analysis.LabelSet
Default-Extensions: DeriveDataTypeable, ScopedTypeVariables, DeriveFunctor, DeriveFoldable, DeriveTraversable, FlexibleContexts
ghc-options:
-fwarn-incomplete-patterns
default-language: Haskell2010