blob: 792222cd4156b136572731d00fc6237a27640e7c [file] [log] [blame]
Nils Diewald02df9912014-06-03 16:08:07 +00001use 5.010001;
2use strict;
3use warnings;
4
5use ExtUtils::MakeMaker;
6
7WriteMakefile(
8 VERSION_FROM => 'lib/Korap.pm',
9 ABSTRACT => 'Test Frontend for the KorAP API',
10 NAME => 'Korap',
11 AUTHOR => 'Nils Diewald',
12 VERSION => '0.01',
13 BUILD_REQUIRES => {
14 'Test::More' => 0
15 },
16 LICENSE => 'artistic_2',
17 PREREQ_PM => {
18 'Mojolicious' => '4.92',
19 'Mojolicious::Plugin::TagHelpers::Pagination' => 0.01,
20 'Mojolicious::Plugin::Notifications' => 0.03,
21# 'Mojolicious::Plugin::Search' => 0.01,
22 'Mojolicious::Plugin::Number::Commify' => '0.022',
23 'JSON::XS' => 0.0
24 },
25 test => {
26 TESTS => 't/*.t'
27 }
28);