Every single hook in a package should expose it's own priority property or inherith from the package one: ``` // inherit hook1: function() {}, // define its own priority hook2: { priority: 2000, callback: function() {} } ```