Source: apc-static/task/data/startup-images-sizes-data.js

/**
 * @overview Favicon sizes data.
 * @see {@link http://gist.github.com/tfausak/2222823}
 */

function rect(width, height) {
    return {
        width: width,
        height: height
    }
}

module.exports = [
    rect(320, 460), //iOS 6 iPhone
    rect(640, 920), //iOS 6 & 7 iPhone (retina)
    rect(640, 1096), //iOS 6 & 7 iPhone 5
    rect(768, 1004), //iOS 6 iPad (portrait)
    rect(748, 1024), //iOS 6 iPad (landscape)
    rect(1536, 2008), //iOS 6 & 7 iPad (retina, portrait)
    rect(1496, 2048) //iOS 6 & 7 iPad (retina, landscape)
];