The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use 5.006;
use strict;
use warnings FATAL => 'all';
use inc::Module::Install;

name     'JavaScript-Console';
all_from 'lib/JavaScript/Console.pm';
author   q{Akzhan Abdulin <akzhan.abdulin@gmail.com>};
license  'artistic2';

perl_version 5.006;

tests_recursive('t');

resources (
   homepage   => 'https://github.com/regru/JavaScript-Console',
   #IRC        => 'irc://irc.perl.org/#JavaScript-Console',
   license    => 'http://www.perlfoundation.org/artistic_license_2_0',
   repository => 'git@github.com:regru/JavaScript-Console.git',
   bugtracker => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=JavaScript-Console',
);

configure_requires (
   'Module::Install' => 0,
);

build_requires (
   'Test::More' => 0,
);

requires (
   'JSON::XS' => 0,
);

install_as_cpan;
auto_install;
WriteAll;