cabal-version: >=1.10 -- Initial package description 'lisk.cabal' generated by 'cabal init'. For -- further documentation, see http://haskell.org/cabal/users-guide/ name: lisk version: 0.1.0.0 synopsis: a lisp interpreter description: an educational lisp interpreter written in haskell by DSCRV -- bug-reports: license: GPL-3 -- license-file: LICENSE author: Akshay maintainer: nerdy@peppe.rs -- copyright: -- category: build-type: Simple extra-source-files: CHANGELOG.md library default-language: Haskell2010 hs-source-dirs: src build-depends: base == 4.*, parsec == 3.*, containers >= 0.6, mtl >= 2.1 exposed-modules: Base, Parser, Evaluator, Operators, Error.Base Error.Pretty Environment executable lisk default-language: Haskell2010 main-is: Main.hs hs-source-dirs: bin build-depends: base == 4.*, parsec == 3.*, readline >= 1.0, mtl >= 2.1, lisk test-suite properties default-language: Haskell2010 type: exitcode-stdio-1.0 main-is: Main.hs hs-source-dirs: tests other-modules: Properties build-depends: base == 4.*, parsec == 3.*, QuickCheck >= 2.1 && < 3, lisk