hsnock-0.2.0: hsnock.cabal
name : hsnock
version : 0.2.0
category : Language
license : PublicDomain
synopsis : Nock 5K interpreter.
author : Steven Dee
maintainer : mrdomino@gmail.com
homepage : https://github.com/mrdomino/hsnock/
build-type : Simple
cabal-version : >=1.8
data-files : README
source-repository head
type : git
location : https://github.com/mrdomino/hsnock.git
library
build-depends : base >=4.5 && <5
, parsec >=3.1
, readline >=1.0
exposed-modules : Language.Nock5K
, Language.Nock5K.Parse
, Language.Nock5K.Spec
, Language.Nock5K.Repl
executable hsnock
main-is : hsnock.lhs
build-depends : base >=4.5 && <5
, parsec >=3.1
, readline >=1.0
test-suite test
type : exitcode-stdio-1.0
main-is : test.hs
build-depends : base >=4.5 && <5
, HUnit >=1.2
, QuickCheck >=2.6
, parsec >=3.1
, readline >=1.0
, test-framework >=0.8
, test-framework-hunit >=0.3
, test-framework-quickcheck2 >=0.3