added boolean like field
[MojoFacets.git] / Makefile.PL
index 612403d..9ba193f 100755 (executable)
@@ -10,10 +10,15 @@ use warnings;
 use ExtUtils::MakeMaker;
 
 WriteMakefile(
-    NAME         => 'MyApp',
-    VERSION_FROM => 'lib/MyApp.pm',
-    AUTHOR       => 'A Good Programmer <nospam@cpan.org>',
-    EXE_FILES => ['script/my_app'],
-    PREREQ_PM => { 'Mojo' => '0.9003' },
+    NAME         => 'MojoFacets',
+    VERSION_FROM => 'lib/MojoFacets.pm',
+    AUTHOR       => 'Dobrica Pavlinusic <dpavlin@rot13.org>',
+    EXE_FILES => ['script/mojo_facets'],
+    PREREQ_PM => {
+               'Mojo' => '0.9003',
+               'Data::Dump' => 0,
+               'File::Slurp' => 0,
+               'JSON' => 0,
+       },
     test => {TESTS => 't/*.t t/*/*.t t/*/*/*.t'}
 );