From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

use strict;
WriteMakefile(
NAME => 'JQ::Lite',
VERSION_FROM => 'lib/JQ/Lite.pm',
ABSTRACT => 'A lightweight jq-like JSON query engine in Perl',
AUTHOR => 'Kawamura Shingo <pannakoota1@gmail.com>',
LICENSE => 'perl',
PREREQ_PM => {
'JSON::PP' => 0,
'Test::More' => 0,
'FindBin' => 0,
},
EXE_FILES => ['script/jq-lite'], # changed from script/jq
META_MERGE => {
resources => {
repository => {
type => 'git',
},
bugtracker => {
},
},
},
);