-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjson-pointer.cabal
More file actions
55 lines (51 loc) · 1.59 KB
/
json-pointer.cabal
File metadata and controls
55 lines (51 loc) · 1.59 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
name:
json-pointer
version:
0.1.2.2
synopsis:
JSON Pointer parsing and interpretation utilities
description:
This library provides a parser and a model,
which is supposed to be later interpreted by the client libraries.
category:
Data, JSON, Parsing
homepage:
https://github.com/sannsyn/json-pointer
bug-reports:
https://github.com/sannsyn/json-pointer/issues
author:
Nikita Volkov <nikita.y.volkov@mail.ru>
maintainer:
Nikita Volkov <nikita.y.volkov@mail.ru>
copyright:
(c) 2016, Sannsyn AS
license:
MIT
license-file:
LICENSE
build-type:
Simple
cabal-version:
>=1.10
source-repository head
type:
git
location:
git://github.com/sannsyn/json-pointer.git
library
hs-source-dirs:
library
default-extensions:
Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples
default-language:
Haskell2010
other-modules:
JSONPointer.Prelude
exposed-modules:
JSONPointer.Parser
JSONPointer.Model
build-depends:
attoparsec >= 0.13 && < 0.14,
base >=4.11 && <5,
base-prelude >= 0.1.21 && < 2,
text == 1.*