forked from disnet/jscheck
-
Notifications
You must be signed in to change notification settings - Fork 1
/
jscheck.cabal
25 lines (22 loc) · 853 Bytes
/
jscheck.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
Name: jscheck
Version: 0.1
Description: Limited static type checking for javascript
Author: Tim Disney and Huascar Sanchez
Maintainer: [email protected]
Build-Type: Simple
Cabal-Version: >= 1.2
Flag Tests
Description: Builds the tests
Default: True
Executable test-jscheck
Main-is: Test.hs
hs-source-dirs: src
Build-Depends: parsec>=2.0,test-framework, test-framework-hunit, HUnit >=1.2
Executable jscheck
Main-is: Main.hs
hs-source-dirs: src
Build-Depends: base>=3, parsec>=2.0, mtl, regex-compat>=0.71, containers,
array, directory, bytestring
GHC-Options: -Wall
Extensions: OverlappingInstances, PatternSignatures, MultiParamTypeClasses,
FlexibleInstances, TypeSynonymInstances, UndecidableInstances