NAME

Module::Build::JSONMETA - (depreacted) write META.json instead of META.yml

SYNOPSIS

Achtung! This library will soon be obsolete as Module::Build moves to use the official CPAN::Meta::Spec JSON files.

This interface may be changed in the future if someone with more Module::Build expertise steps forward.

----- in Build.PL -----

use Module::Build;
use Module::Build::JSONMETA;

my $class = Module::Build->subclass(
  code => Module::Build::JSONMETA->code,
);

my $build = $class->new( ... );

$build->create_build_script;