├── .editorconfig ├── .gitattributes ├── .gitignore ├── .npmrc ├── .travis.yml ├── 3device.png ├── LICENSE ├── README.md ├── animation.gif ├── cli.js ├── data ├── LICENSE ├── device-dimensions.json ├── frames.json └── pixel-ratios.json ├── example.jpg ├── example.png ├── lib ├── frame.js └── webshot.js ├── logo.png ├── multi-shot.png ├── package.json ├── scripts ├── parse-frames.js └── upload-frames.js ├── snap └── snapcraft.yaml ├── test └── index.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0bra/deviceframe/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0bra/deviceframe/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0bra/deviceframe/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0bra/deviceframe/HEAD/.travis.yml -------------------------------------------------------------------------------- /3device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0bra/deviceframe/HEAD/3device.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0bra/deviceframe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0bra/deviceframe/HEAD/README.md -------------------------------------------------------------------------------- /animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0bra/deviceframe/HEAD/animation.gif -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0bra/deviceframe/HEAD/cli.js -------------------------------------------------------------------------------- /data/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0bra/deviceframe/HEAD/data/LICENSE -------------------------------------------------------------------------------- /data/device-dimensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0bra/deviceframe/HEAD/data/device-dimensions.json -------------------------------------------------------------------------------- /data/frames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0bra/deviceframe/HEAD/data/frames.json -------------------------------------------------------------------------------- /data/pixel-ratios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0bra/deviceframe/HEAD/data/pixel-ratios.json -------------------------------------------------------------------------------- /example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0bra/deviceframe/HEAD/example.jpg -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0bra/deviceframe/HEAD/example.png -------------------------------------------------------------------------------- /lib/frame.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/webshot.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0bra/deviceframe/HEAD/logo.png -------------------------------------------------------------------------------- /multi-shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0bra/deviceframe/HEAD/multi-shot.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0bra/deviceframe/HEAD/package.json -------------------------------------------------------------------------------- /scripts/parse-frames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0bra/deviceframe/HEAD/scripts/parse-frames.js -------------------------------------------------------------------------------- /scripts/upload-frames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0bra/deviceframe/HEAD/scripts/upload-frames.js -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0bra/deviceframe/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0bra/deviceframe/HEAD/test/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0bra/deviceframe/HEAD/yarn.lock --------------------------------------------------------------------------------