sortBy

_.sortBy(collection, [iteratees=[_.identity]])
// objの中身をsort_num、nameの順に並び替え
obj = _.sortBy(obj, ['sort_num', 'name']);

参考