HackaMol-X-Vina
view release on metacpan or search on metacpan
examples/utilities/stor_to_json.pl view on Meta::CPAN
use Modern::Perl;
use JSON::XS;
use Storable;
use File::Slurp;
die "pass in.stor out.json " unless (@ARGV == 2);
my $db = retrieve(shift);
write_file (shift, encode_json $db);
( run in 2.312 seconds using v1.01-cache-2.11-cpan-d7f47b0818f )