-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.PL
46 lines (42 loc) · 1.24 KB
/
Makefile.PL
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
#!perl
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'JSON::Schema::ToJSON',
VERSION_FROM => 'lib/JSON/Schema/ToJSON.pm',
AUTHOR => 'Lee Johnson <[email protected]>',
LICENSE => 'perl',
MIN_PERL_VERSION => '5.10.1',
PREREQ_PM => {
'B' => 0,
'Cpanel::JSON::XS' => 3.0213,
'YAML::XS' => 0,
'JSON::Validator' => 3.23,
'String::Random' => 0.29,
'Mojolicious' => '7.15',
'Hash::Merge' => 0,
'File::Slurper' => 0,
'Data::Dump' => 0,
'FindBin' => 0,
'Data::Fake' => 0.004,
},
TEST_REQUIRES => {
'Test::Most' => 0.31,
},
META_MERGE => {
resources => {
license => 'http://dev.perl.org/licenses/',
homepage => 'https://metacpan.org/module/JSON::Schema::ToJSON',
bugtracker => 'https://github.com/Humanstate/json-schema-tojson/issues',
repository => 'https://github.com/Humanstate/json-schema-tojson'
},
},
EXE_FILES => [
'bin/jsonschema2json',
],
test => {
RECURSIVE_TEST_FILES => 1,
},
);
# vim: ts=4:sw=4:et