App-colourhexdump
view release on metacpan - search on metacpan
view release on metacpan or search on metacpan
},
"requires" : {
"Carp" : "0",
"Getopt::Long::Descriptive" : "0",
"Module::Runtime" : "0",
"Moose" : "0",
"Moose::Role" : "0",
"MooseX::Getopt::Dashes" : "0.37",
"String::RewritePrefix" : "0",
"Term::ANSIColor" : "3.00",
"namespace::autoclean" : "0",
"perl" : "5.006",
"strict" : "0",
"warnings" : "0"
}
},
"test" : {
"recommends" : {
"CPAN::Meta" : "2.120900",
"ExtUtils::MakeMaker" : "7.00",
"Test::More" : "0.99"
Moose: '2.000'
requires:
Carp: '0'
Getopt::Long::Descriptive: '0'
Module::Runtime: '0'
Moose: '0'
Moose::Role: '0'
MooseX::Getopt::Dashes: '0.37'
String::RewritePrefix: '0'
Term::ANSIColor: '3.00'
namespace::autoclean: '0'
perl: '5.006'
strict: '0'
warnings: '0'
resources:
bugtracker: https://github.com/kentnl/App-colourhexdump/issues
homepage: https://github.com/kentnl/App-colourhexdump
repository: https://github.com/kentnl/App-colourhexdump.git
version: '1.000003'
Makefile.PL view on Meta::CPAN
"NAME" => "App::colourhexdump",
"PREREQ_PM" => {
"Carp" => 0,
"Getopt::Long::Descriptive" => 0,
"Module::Runtime" => 0,
"Moose" => 0,
"Moose::Role" => 0,
"MooseX::Getopt::Dashes" => "0.37",
"String::RewritePrefix" => 0,
"Term::ANSIColor" => "3.00",
"namespace::autoclean" => 0,
"strict" => 0,
"warnings" => 0
},
"TEST_REQUIRES" => {
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"Test::More" => 0
},
"VERSION" => "1.000003",
"test" => {
lib/App/colourhexdump/ColourProfile.pm view on Meta::CPAN
package App::colourhexdump::ColourProfile;
our $VERSION = '1.000003';
# ABSTRACT: A Role for Colour Profiles
our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
use Moose::Role qw( requires );
use namespace::autoclean;
lib/App/colourhexdump/DefaultColourProfile.pm view on Meta::CPAN
package App::colourhexdump::DefaultColourProfile;
our $VERSION = '1.000003';
# ABSTRACT: The default colour profile
our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
use Moose qw( has with );
use namespace::autoclean;
with 'App::colourhexdump::ColourProfile';
__PACKAGE__->meta->make_immutable;
no Moose;
use Term::ANSIColor 3.00 qw( BLACK ON_RED BOLD BRIGHT_BLUE BRIGHT_YELLOW ON_YELLOW RED BLUE YELLOW );
lib/App/colourhexdump/Formatter.pm view on Meta::CPAN
# ABSTRACT: Colour-Highlight lines of data as hex.
our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
use Moose qw( has );
use String::RewritePrefix;
use Module::Runtime qw( require_module );
use Term::ANSIColor 3.00 qw( colorstrip );
use namespace::autoclean;
has colour_profile => (
does => 'App::colourhexdump::ColourProfile',
is => 'rw',
lazy_build => 1,
init_arg => undef,
);
has real_colour_profile_class => (
isa => 'Str',
misc/built_with.json view on Meta::CPAN
"String::RewritePrefix" : "0.007",
"Term::ANSIColor" : "4.06",
"Test::CPAN::Changes" : "0.400002",
"Test::CPAN::Meta" : "0.25",
"Test::EOL" : "1.6",
"Test::Kwalitee" : "1.25",
"Test::MinimumVersion" : "0.101082",
"Test::More" : "1.302073",
"Test::Pod" : "1.51",
"Test::Pod::Coverage" : "1.10",
"namespace::autoclean" : "0.28",
"strict" : "1.11",
"warnings" : "1.37"
},
"perl" : {
"original" : "v5.25.10",
"qv" : 1,
"version" : [
5,
25,
10
t/00-report-prereqs.dd view on Meta::CPAN
},
'requires' => {
'Carp' => '0',
'Getopt::Long::Descriptive' => '0',
'Module::Runtime' => '0',
'Moose' => '0',
'Moose::Role' => '0',
'MooseX::Getopt::Dashes' => '0.37',
'String::RewritePrefix' => '0',
'Term::ANSIColor' => '3.00',
'namespace::autoclean' => '0',
'perl' => '5.006',
'strict' => '0',
'warnings' => '0'
}
},
'test' => {
'recommends' => {
'CPAN::Meta' => '2.120900',
'ExtUtils::MakeMaker' => '7.00',
'Test::More' => '0.99'
view all matches for this distributionview release on metacpan - search on metacpan
( run in 1.612 second using v1.00-cache-2.02-grep-82fe00e-cpan-c98054f2a92 )