packages feed

cj-token-0.0.1: package.yaml

name: cj-token
version: 0.0.1
category: Other
synopsis: A new Haskeleton package.
description: cj-token is a new Haskeleton package.
maintainer: Author name here
license: ISC
extra-source-files:
- package.yaml
- README.md
- stack.yaml
ghc-options: -Wall
default-extensions:
- ConstraintKinds
- DeriveGeneric
- DuplicateRecordFields
- FlexibleContexts
- FlexibleInstances
- GADTs
- GeneralizedNewtypeDeriving
- KindSignatures
- LambdaCase
- MultiParamTypeClasses
- NamedFieldPuns
- OverloadedStrings
- RankNTypes
- ScopedTypeVariables
- TypeApplications
- TypeOperators
library:
  dependencies:
  - aeson < 2
  - base < 5
  - base64-bytestring < 2
  - containers < 1
  - either < 5
  - jwt < 1
  - text < 2
  - time < 2
  - text-conversions < 1
  source-dirs: library
executables:
  cj-token:
    dependencies:
    - base
    - cj-token
    ghc-options:
    - -rtsopts
    - -threaded
    - -with-rtsopts=-N
    main: Main.hs
    source-dirs: executable
tests:
  cj-token-test-suite:
    dependencies:
    - base
    - jwt
    - hspec
    - time
    - text
    - text-conversions
    - QuickCheck
    - cj-token

    ghc-options:
    - -rtsopts
    - -threaded
    - -with-rtsopts=-N
    main: Main.hs
    source-dirs: test-suite