Mongo DB seems like a bit of an odd choice for such a simple tool. A simple sqlite DB that you can just persist in a file seems like the easier choice.
Any SQL database will do that just fine and is built for queries like "give me all the licenses of this customer who paid for the current version". It also gives you stricter verification for things like unique license keys and cross table queries for different kinds of licensing schemas.
If you abstract away the DB with an interface you can also easily switch out which DB you are using.