Last active
September 13, 2017 16:57
-
-
Save Skarsnik/0c0b88a1f26ce8e68b33f30b4239d125 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"perl" : "6.*", | |
"name" : "Gumbo", | |
"license" : "Artistic-2.0", | |
"version" : "*", | |
"description" : "Binding of the gumbo C library, a html parser lib", | |
"author" : "Sylvain Colinet", | |
"provides" : { | |
"Gumbo" : "lib/Gumbo.pm6", | |
"Gumbo::Parser" : "lib/Gumbo/Parser.pm6", | |
"Gumbo::Binding" : "lib/Gumbo/Binding.pm6" | |
}, | |
"depends" : [ "XML" ], | |
"external-deps" : [ | |
{"type" : "C", | |
"name" : "gumbo", | |
"version" : "0.1*" }, | |
], | |
"source-url" : "git://github.com/Skarsnik/perl6-gumbo.git", | |
"tags" : ["HTML", "Web", "Parser"] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"perl" : "6.*", | |
"name" : "Gumbo", | |
"license" : "Artistic-2.0", | |
"version" : "*", | |
"description" : "Binding of the gumbo C library, a html parser lib", | |
"author" : "Sylvain Colinet", | |
"provides" : { | |
"Gumbo" : "lib/Gumbo.pm6", | |
"Gumbo::Parser" : "lib/Gumbo/Parser.pm6", | |
"Gumbo::Binding" : "lib/Gumbo/Binding.pm6" | |
}, | |
"depends" : [ "XML", | |
{"name" : "gumbo:from<native>", | |
"version" : "0.1*" | |
}], | |
"source-url" : "git://github.com/Skarsnik/perl6-gumbo.git", | |
"tags" : ["HTML", "Web", "Parser"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment