├── .gitignore ├── .jshintrc ├── .travis.yml ├── README.md ├── app ├── index.js └── templates │ ├── Gruntfile.js │ ├── _package.json │ ├── base.html │ ├── bowerrc │ ├── credentials.template │ ├── gitignore │ ├── index.html │ ├── jshintrc │ ├── main.css │ ├── main.js │ └── main.scss ├── package.json └── test └── test-app.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | temp/ 3 | *.tgz 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/generator-newsapp/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/generator-newsapp/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/generator-newsapp/HEAD/README.md -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/generator-newsapp/HEAD/app/index.js -------------------------------------------------------------------------------- /app/templates/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/generator-newsapp/HEAD/app/templates/Gruntfile.js -------------------------------------------------------------------------------- /app/templates/_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/generator-newsapp/HEAD/app/templates/_package.json -------------------------------------------------------------------------------- /app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/generator-newsapp/HEAD/app/templates/base.html -------------------------------------------------------------------------------- /app/templates/bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/generator-newsapp/HEAD/app/templates/bowerrc -------------------------------------------------------------------------------- /app/templates/credentials.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/generator-newsapp/HEAD/app/templates/credentials.template -------------------------------------------------------------------------------- /app/templates/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/generator-newsapp/HEAD/app/templates/gitignore -------------------------------------------------------------------------------- /app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/generator-newsapp/HEAD/app/templates/index.html -------------------------------------------------------------------------------- /app/templates/jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/generator-newsapp/HEAD/app/templates/jshintrc -------------------------------------------------------------------------------- /app/templates/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/generator-newsapp/HEAD/app/templates/main.css -------------------------------------------------------------------------------- /app/templates/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/generator-newsapp/HEAD/app/templates/main.js -------------------------------------------------------------------------------- /app/templates/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/generator-newsapp/HEAD/app/templates/main.scss -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/generator-newsapp/HEAD/package.json -------------------------------------------------------------------------------- /test/test-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/generator-newsapp/HEAD/test/test-app.js --------------------------------------------------------------------------------