40 lines
576 B
YAML
40 lines
576 B
YAML
name: numbersquare
|
|
version: "0.1.0"
|
|
category: Games
|
|
synopsis: "a game where you number square"
|
|
description: "a game where you number square"
|
|
license: BSD3
|
|
author: skulk
|
|
|
|
ghc-options: "-Wall"
|
|
|
|
dependencies:
|
|
- "base == 4.*"
|
|
- random
|
|
- array
|
|
- text
|
|
- mtl
|
|
- extra
|
|
- display
|
|
- binary
|
|
|
|
library:
|
|
source-dirs:
|
|
- src
|
|
|
|
executable:
|
|
source-dirs:
|
|
- app
|
|
main: Main.hs
|
|
|
|
tests:
|
|
numberspec-test:
|
|
main: "Main.hs"
|
|
ghc-options: "-threaded -O0"
|
|
source-dirs:
|
|
- test
|
|
|
|
dependencies:
|
|
- hspec >= 2.1.8
|
|
- QuickCheck
|
|
- numbersquare
|