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

WriteMakefile(
    NAME              => 'MooX::Role::JSON_LD',
    VERSION_FROM      => 'lib/MooX/Role/JSON_LD.pm',
    MIN_PERL_VERSION  => '5.6.0',
    PREREQ_PM         => {
        Moose           => 0,
        Moo             => 0,
        Types::Standard => 0,
        JSON            => 0,
    },
    BUILD_REQUIRES    => {
        Test::More    => 0,
    },
    ABSTRACT_FROM     => 'lib/MooX/Role/JSON_LD.pm',
    AUTHOR            => 'Dave Cross <dave@perlhacks.com>',
    LICENSE           => 'perl',
    MIN_PERL_VERSION  => '5.6.0',
    META_MERGE        => {
        'meta-spec' => { version => 2 },
        resources => {
            repository => {
                type => 'git',
                url => 'git://github.com/davorg/moox-role-json_ld.git',
                web => 'https://github.com/davorg/moox-role-json_ld',
            },
        },

    },
);