-
Notifications
You must be signed in to change notification settings - Fork 1
/
language-js.cabal
50 lines (44 loc) · 1.45 KB
/
language-js.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
cabal-version: 3.0
name: language-js
version: 0.3.0
synopsis: javascript parser for es6 and es7.
description: a javascript parser for es6 and es7.
bug-reports: https://github.com/diasbruno/language-js/issues
category: Language
license: MIT
license-file: LICENSE
author: Bruno Dias
maintainer: dias.h.bruno@gmail.com
extra-source-files:
changelog.md
readme.md
library
default-language: Haskell2010
build-depends: base <5
, parsec ==3.1.14.0
hs-source-dirs: src
exposed-modules: Language.JS.Common
, Language.JS.Operators
, Language.JS.Parser
, Language.JS.Types
test-suite tests
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: t
main-is: Spec.hs
other-modules: Test.AssignmentAndOperation
, Test.Classes
, Test.Exports
, Test.Functions
, Test.Helpers
, Test.If
, Test.Imports
, Test.Iteration
, Test.MemberExpression
, Test.Switch
, Test.Try
, Test.Variables
build-depends: base
, hspec
, parsec
, language-js