Add a few tests
[plack-app-gruntmaster.git] / Makefile.PL
1 use 5.014000;
2 use ExtUtils::MakeMaker;
3
4 WriteMakefile(
5 NAME => 'Plack::App::Gruntmaster',
6 VERSION_FROM => 'lib/Plack/App/Gruntmaster.pm',
7 ABSTRACT_FROM => 'lib/Plack/App/Gruntmaster.pm',
8 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
9 MIN_PERL_VERSION => '5.14.0',
10 LICENSE => 'AGPL_3',
11 SIGN => 1,
12 BUILD_REQUIRES => {
13 qw/Test::MockTime 0
14 Test::More 0
15 Test::WWW::Mechanize::PSGI 0/,
16 },
17 PREREQ_PM => {
18 qw/Carp 0
19 Digest::SHA 0
20 Encode 0
21 List::Util 0
22 POSIX 0
23 constant 0
24 feature 0
25 parent 0
26 strict 0
27 warnings 0
28
29 CSS::Minifier::XS 0
30 File::Slurp 0
31 Gruntmaster::Data 0
32 HTML::Seamstress 0
33 JavaScript::Minifier::XS 0
34 JSON::MaybeXS 0
35 Log::Log4perl 0
36 PerlX::Maybe 0
37 Plack::Builder 0
38 Plack::Request 0
39 Plack::Util 0
40 Scope::Upper 0
41 Tie::Hash::Expire 0
42 Web::Simple 0.019/,
43 },
44 META_MERGE => {
45 dynamic_config => 0,
46 resources => {
47 repository => 'https://git.ieval.ro/?p=plack-app-gruntmaster.git',
48 }
49 }
50 )
This page took 0.023296 seconds and 5 git commands to generate.