Refactoring, part II (HTML::Seamstress)
[gruntmaster-page.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::More 0
14 Test::WWW::Mechanize::PSGI 0/,
15 },
16 PREREQ_PM => {
17 qw/Carp 0
18 Digest::SHA 0
19 List::Util 0
20 POSIX 0
21 constant 0
22 feature 0
23 parent 0
24 strict 0
25 warnings 0
26
27 CSS::Minifier::XS 0
28 File::Slurp 0
29 Gruntmaster::Data 0
30 HTML::Template::Compiled 0
31 HTTP::Negotiate 0
32 JavaScript::Minifier::XS 0
33 JSON 0
34 Log::Log4perl 0
35 LWP::UserAgent 0
36 PerlX::Maybe 0
37 Plack::Builder 0
38 Plack::Request 0
39 Scope::Upper 0
40 Tie::Hash::Expire 0
41 Web::Simple 0/,
42 },
43 META_MERGE => {
44 dynamic_config => 0,
45 resources => {
46 repository => 'https://git.ieval.ro/?p=plack-app-gruntmaster.git',
47 }
48 }
49 )
This page took 0.022546 seconds and 4 git commands to generate.