forked from DaveCTurner/json-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
56 lines (49 loc) · 1.22 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
name: json-validator
version: 0.1.0.0
synopsis: Validates JSON
description: Validates JSON.
github: tracsis/json-validator
license: BSD3
license-file: LICENSE
author: David Turner
maintainer: Tracsis plc
copyright: 2017 Tracsis plc
category: Web
build-type: Simple
extra-source-files: README.md
language: Haskell2010
tested-with: GHC ==8.10.7 || ==9.4.8 || ==9.8.2 || ==9.10.1 || ==9.12.1
dependencies:
- base >= 4.7 && < 5
- bytestring >= 0.10 && < 1
library:
source-dirs: src
dependencies:
- array >= 0.5 && < 1
- containers >= 0.6 && < 1
- mtl >= 2.2 && < 3
- text >= 1.2 && < 3
- word8 >= 0.1 && < 1
executables:
json-validator-exe:
source-dirs: app
main: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
dependencies:
- json-validator
- aeson >= 1.5 && < 3
- criterion >= 1.5 && < 2
- parallel >= 3.2 && < 4
- text >= 1.2 && < 3
dump-state-machine:
source-dirs: dump-state-machine
main: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
dependencies:
- json-validator
json-test:
source-dirs: json-test
main: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
dependencies:
- json-validator