-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.yaml
60 lines (53 loc) · 913 Bytes
/
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
name: jq
version: 0.1.0
homepage: https://github.com/sshine/hs-jq
author: Simon Shine
maintainer: shreddedglory@gmail.com
copyright: 2019-2024 Simon Shine
extra-source-files:
- README.md
dependencies:
- base
- megaparsec
- parser-combinators
- scientific
- text
- mtl
default-extensions:
- OverloadedStrings
library:
exposed-modules:
- Jq
- Jq.Expr
- Jq.Number
- Jq.Parser
source-dirs: src
executables:
jq:
source-dirs: app
main: Main.hs
tests:
test:
main: test.hs
source-dirs: test
dependencies:
- jq
- tasty
- tasty-discover
- tasty-hspec
- tasty-hedgehog
- hedgehog
- hspec
- hspec-megaparsec
- raw-strings-qq
- aeson
- containers
- vector
benchmarks:
bench:
main: bench.hs
source-dirs: bench
dependencies:
- jq
- criterion
ghc-options: -O2