-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.yaml
More file actions
64 lines (57 loc) · 1.16 KB
/
Copy pathpackage.yaml
File metadata and controls
64 lines (57 loc) · 1.16 KB
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
64
name: jmespath-hs
version: 0.1.0.0
github: "gcapizzi/jmespath-hs"
license: BSD3
author: "Giuseppe Capizzi"
maintainer: "g.capizzi@gmail.com"
copyright: "2018 Giuseppe Capizzi"
extra-source-files:
- README.md
- ChangeLog.md
synopsis: Short description of your package
category: Text, JSON
description: Please see the README on Github at <https://github.com/gcapizzi/jmespath-hs#readme>
dependencies:
- base >= 4.7 && < 5
ghc-options:
- -XOverloadedStrings
- -Wall
library:
source-dirs: src
dependencies:
- bytestring
- aeson
- text
- unordered-containers
- vector
- array
- scientific
build-tools:
- alex
- happy
other-modules:
- JMESPath.Lexer
- JMESPath.Parser
executables:
jp:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- bytestring
- text
- jmespath-hs
tests:
jmespath-hs-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- jmespath-hs
- hspec