The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use Module::Build;

my $builder = Module::Build->new(

  module_name       => 'Egg::Release::JSON',
  dist_version_from => 'lib/Egg/Release/JSON.pm',
  dist_author       => 'Masatoshi Mizuno E<lt>lusheE<64>cpan.orgE<gt>',
  license           => 'perl',

  requires => {

    'Egg::Release'         => 2.20,
    'Egg::Plugin::LWP'     => 2.01,
    'JSON'                 => 1.14,

    'Test::More'           => 0,
    'Test::Pod'            => 0,
    'Test::Perl::Critic'   => 0,
    'Test::Pod::Coverage'  => 0,
    },

  );

$builder->create_build_script();