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 - containers - optics default-extensions: - ImportQualifiedPost - DataKinds - FlexibleInstances - MultiParamTypeClasses - TypeFamilies - UndecidableInstances - OverloadedLabels - NamedFieldPuns - TypeOperators build-type: Simple library: source-dirs: - src executable: source-dirs: - app main: Main.hs when: - condition: arch(wasm32) ghc-options: -no-hs-main -optl-mexec-model=reactor "-optl-Wl,--export=hs_start" cpp-options: -DWASM tests: numberspec-test: main: "Main.hs" ghc-options: "-O0" source-dirs: - test dependencies: - hspec >= 2.1.8 - QuickCheck - numbersquare