├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── assets ├── chrome01.png ├── firefox01.png ├── firefox02.png ├── firefox03.png ├── firefox04.png ├── icon.png ├── safari01.png ├── safari02.png ├── safari03.png └── safari04.png ├── bin.js ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choojs/create-choo-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choojs/create-choo-app/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choojs/create-choo-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choojs/create-choo-app/HEAD/README.md -------------------------------------------------------------------------------- /assets/chrome01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choojs/create-choo-app/HEAD/assets/chrome01.png -------------------------------------------------------------------------------- /assets/firefox01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choojs/create-choo-app/HEAD/assets/firefox01.png -------------------------------------------------------------------------------- /assets/firefox02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choojs/create-choo-app/HEAD/assets/firefox02.png -------------------------------------------------------------------------------- /assets/firefox03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choojs/create-choo-app/HEAD/assets/firefox03.png -------------------------------------------------------------------------------- /assets/firefox04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choojs/create-choo-app/HEAD/assets/firefox04.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choojs/create-choo-app/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/safari01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choojs/create-choo-app/HEAD/assets/safari01.png -------------------------------------------------------------------------------- /assets/safari02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choojs/create-choo-app/HEAD/assets/safari02.png -------------------------------------------------------------------------------- /assets/safari03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choojs/create-choo-app/HEAD/assets/safari03.png -------------------------------------------------------------------------------- /assets/safari04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choojs/create-choo-app/HEAD/assets/safari04.png -------------------------------------------------------------------------------- /bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choojs/create-choo-app/HEAD/bin.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choojs/create-choo-app/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choojs/create-choo-app/HEAD/package.json --------------------------------------------------------------------------------