File: jsonpath.cabal

package info (click to toggle)
haskell-jsonpath 0.3.0.0-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 148 kB
  • sloc: haskell: 528; makefile: 3
file content (69 lines) | stat: -rw-r--r-- 1,675 bytes parent folder | download | duplicates (2)
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
65
66
67
68
69
cabal-version: 1.12

name:           jsonpath
version:        0.3.0.0
synopsis:       Library to parse and execute JSONPath
description:    Please see the README on GitHub at <https://github.com/akshaymankar/jsonpath-hs#readme>
category:       Text, Web, JSON
homepage:       https://github.com/akshaymankar/jsonpath-hs#readme
bug-reports:    https://github.com/akshaymankar/jsonpath-hs/issues
author:         Akshay Mankar
maintainer:     itsakshaymankar@gmail.com
copyright:      Akshay Mankar
license:        BSD3
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md
    ChangeLog.md
    test/resources/json-path-tests/*.json

source-repository head
  type: git
  location: https://github.com/akshaymankar/jsonpath-hs

library
  exposed-modules:
      Data.JSONPath
      Data.JSONPath.Execute
      Data.JSONPath.Parser
      Data.JSONPath.Types
  other-modules:
      Paths_jsonpath
  hs-source-dirs:
      src
  build-depends:
      aeson >=2
    , megaparsec
    , base >=4.9 && <5
    , scientific
    , text >=1.2
    , unordered-containers >=0.2.8
    , vector >=0.12
  default-language: Haskell2010

test-suite jsonpath-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      Data.JSONPathSpec
      Paths_jsonpath
  hs-source-dirs:
      test
  ghc-options: -threaded -rtsopts
  build-tool-depends:
      hspec-discover:hspec-discover
  build-depends:
      aeson >=1.1
    , aeson-casing
    , megaparsec
    , base >=4.9 && <5
    , bytestring
    , file-embed
    , hspec
    , hspec-megaparsec
    , jsonpath
    , text >=1.2
    , unordered-containers >=0.2.8
    , vector >=0.12
  default-language: Haskell2010