forked from codedownio/aeson-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
63 lines (56 loc) · 1.47 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
62
63
name: aeson-typescript
version: 0.2.0.0
github: "codedownio/aeson-typescript"
license: BSD3
category: Text, Web, JSON
author: "Tom McLaughlin"
maintainer: "[email protected]"
copyright: "2018 CodeDown"
extra-source-files:
- README.md
- ChangeLog.md
- test/assets/package.json
- test/assets/npm_install.sh
- test/assets/yarn_install.sh
- test/assets/yarn.lock
# Metadata used when publishing your package
synopsis: Generate TypeScript definition files from your ADTs
# To avoid duplicated efforts in documentation and dealing with the
# complications of embedding Haddock markup inside cabal files, it is
# common to point users to the README.md file.
description: Please see the README on Github at <https://github.com/codedownio/aeson-typescript#readme>
tested-with: GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.2
dependencies:
- aeson
- base >= 4.7 && < 5
- containers
- interpolate
- mtl
- template-haskell
- text
- th-abstraction < 0.4
- unordered-containers
library:
source-dirs: src
exposed-modules:
- Data.Aeson.TypeScript.TH
- Data.Aeson.TypeScript.Recursive
tests:
aeson-typescript-test:
main: Spec.hs
source-dirs:
- test
- src
ghc-options:
- -Wall
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- aeson-typescript
- bytestring
- directory
- filepath
- hspec
- process
- temporary