├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .travis.yml ├── app ├── index.js └── templates │ ├── _index.js │ ├── _license │ ├── _package.json │ ├── _readme.md │ ├── _test.js │ ├── editorconfig │ ├── gitignore │ └── travis.yml ├── license ├── package.json ├── readme.md └── test └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johno/generator-p/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johno/generator-p/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johno/generator-p/HEAD/.travis.yml -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johno/generator-p/HEAD/app/index.js -------------------------------------------------------------------------------- /app/templates/_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johno/generator-p/HEAD/app/templates/_index.js -------------------------------------------------------------------------------- /app/templates/_license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johno/generator-p/HEAD/app/templates/_license -------------------------------------------------------------------------------- /app/templates/_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johno/generator-p/HEAD/app/templates/_package.json -------------------------------------------------------------------------------- /app/templates/_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johno/generator-p/HEAD/app/templates/_readme.md -------------------------------------------------------------------------------- /app/templates/_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johno/generator-p/HEAD/app/templates/_test.js -------------------------------------------------------------------------------- /app/templates/editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johno/generator-p/HEAD/app/templates/editorconfig -------------------------------------------------------------------------------- /app/templates/gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /app/templates/travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johno/generator-p/HEAD/app/templates/travis.yml -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johno/generator-p/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johno/generator-p/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johno/generator-p/HEAD/readme.md -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johno/generator-p/HEAD/test/test.js --------------------------------------------------------------------------------