-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.yaml
62 lines (55 loc) · 1.11 KB
/
package.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: aeson-generic-ts
version: 0.1.0.0
#synopsis:
#description:
homepage: https://github.com/smaccoun/aeson-generic-ts#readme
license: BSD3
author: Steven MacCoun
maintainer: [email protected]
copyright: 2018 Steven MacCoun
category: Web
extra-source-files:
- README.md
dependencies:
- base >= 4.7 && < 5
- text
- aeson
- exceptions
- template-haskell
- th-reify-many
- th-abstraction
default-extensions:
- ConstraintKinds
- DataKinds
- DeriveGeneric
- FlexibleContexts
- FlexibleInstances
- KindSignatures
- MultiParamTypeClasses
- OverloadedStrings
- RecordWildCards
- ScopedTypeVariables
- StandaloneDeriving
- TypeFamilies
- UndecidableInstances
- DeriveAnyClass
library:
source-dirs: src
tests:
aeson-generic-ts-test:
main: Spec.hs
source-dirs:
- test
- src
- data
dependencies:
- hspec
- hspec-discover
- markdown-unlit
ghc-options: [-pgmL markdown-unlit]
doctest:
main: DocTest.hs
source-dirs: .
dependencies:
- doctest
- Glob