1# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.022.
2use strict;
3use warnings;
4
5use 5.016;
6
7use ExtUtils::MakeMaker;
8
9my %WriteMakefileArgs = (
10  "ABSTRACT" => "search nested hashref/arrayref structures using JSONPath",
11  "AUTHOR" => "Kit Peters <popefelix\@gmail.com>",
12  "CONFIGURE_REQUIRES" => {
13    "ExtUtils::MakeMaker" => 0
14  },
15  "DISTNAME" => "JSON-Path",
16  "LICENSE" => "perl",
17  "MIN_PERL_VERSION" => "5.016",
18  "NAME" => "JSON::Path",
19  "PREREQ_PM" => {
20    "Carp" => 0,
21    "Carp::Assert" => 0,
22    "Exporter" => 0,
23    "Exporter::Easy" => 0,
24    "Exporter::Tiny" => 0,
25    "JSON::MaybeXS" => 0,
26    "LV" => 0,
27    "List::Util" => "1.48",
28    "Readonly" => 0,
29    "Safe" => 0,
30    "Scalar::Util" => 0,
31    "Storable" => 0,
32    "Sys::Hostname" => 0,
33    "Try::Tiny" => 0,
34    "base" => 0,
35    "overload" => 0,
36    "strict" => 0,
37    "warnings" => 0
38  },
39  "TEST_REQUIRES" => {
40    "JSON" => 0,
41    "JSON::Parse" => 0,
42    "Test2::V0" => 0,
43    "Test::Deep" => 0,
44    "Test::More" => 0,
45    "Test::Most" => 0,
46    "Tie::IxHash" => 0
47  },
48  "VERSION" => "0.5",
49  "test" => {
50    "TESTS" => "t/*.t t/evaluator/*.t"
51  }
52);
53
54
55my %FallbackPrereqs = (
56  "Carp" => 0,
57  "Carp::Assert" => 0,
58  "Exporter" => 0,
59  "Exporter::Easy" => 0,
60  "Exporter::Tiny" => 0,
61  "JSON" => 0,
62  "JSON::MaybeXS" => 0,
63  "JSON::Parse" => 0,
64  "LV" => 0,
65  "List::Util" => "1.48",
66  "Readonly" => 0,
67  "Safe" => 0,
68  "Scalar::Util" => 0,
69  "Storable" => 0,
70  "Sys::Hostname" => 0,
71  "Test2::V0" => 0,
72  "Test::Deep" => 0,
73  "Test::More" => 0,
74  "Test::Most" => 0,
75  "Tie::IxHash" => 0,
76  "Try::Tiny" => 0,
77  "base" => 0,
78  "overload" => 0,
79  "strict" => 0,
80  "warnings" => 0
81);
82
83
84unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
85  delete $WriteMakefileArgs{TEST_REQUIRES};
86  delete $WriteMakefileArgs{BUILD_REQUIRES};
87  $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
88}
89
90delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
91  unless eval { ExtUtils::MakeMaker->VERSION(6.52) };
92
93WriteMakefile(%WriteMakefileArgs);
94