├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .travis.yml ├── LICENSE ├── app ├── index.js └── templates │ ├── Gruntfile.js │ ├── _package.json │ ├── bower.json │ ├── contributing.md │ ├── editorconfig │ ├── gitignore │ ├── jshintrc │ ├── readme.md │ ├── src │ ├── jshintrc │ └── name.js │ ├── test │ ├── jshintrc │ ├── name.html │ └── name_test.js │ └── travis.yml ├── package.json ├── readme.md └── test ├── test-creation.js └── test-load.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-jquery/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | temp 3 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-jquery/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-jquery/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-jquery/HEAD/LICENSE -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-jquery/HEAD/app/index.js -------------------------------------------------------------------------------- /app/templates/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-jquery/HEAD/app/templates/Gruntfile.js -------------------------------------------------------------------------------- /app/templates/_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-jquery/HEAD/app/templates/_package.json -------------------------------------------------------------------------------- /app/templates/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-jquery/HEAD/app/templates/bower.json -------------------------------------------------------------------------------- /app/templates/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-jquery/HEAD/app/templates/contributing.md -------------------------------------------------------------------------------- /app/templates/editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-jquery/HEAD/app/templates/editorconfig -------------------------------------------------------------------------------- /app/templates/gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /bower_components/ 3 | dist 4 | -------------------------------------------------------------------------------- /app/templates/jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-jquery/HEAD/app/templates/jshintrc -------------------------------------------------------------------------------- /app/templates/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-jquery/HEAD/app/templates/readme.md -------------------------------------------------------------------------------- /app/templates/src/jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-jquery/HEAD/app/templates/src/jshintrc -------------------------------------------------------------------------------- /app/templates/src/name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-jquery/HEAD/app/templates/src/name.js -------------------------------------------------------------------------------- /app/templates/test/jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-jquery/HEAD/app/templates/test/jshintrc -------------------------------------------------------------------------------- /app/templates/test/name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-jquery/HEAD/app/templates/test/name.html -------------------------------------------------------------------------------- /app/templates/test/name_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-jquery/HEAD/app/templates/test/name_test.js -------------------------------------------------------------------------------- /app/templates/travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-jquery/HEAD/app/templates/travis.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-jquery/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-jquery/HEAD/readme.md -------------------------------------------------------------------------------- /test/test-creation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-jquery/HEAD/test/test-creation.js -------------------------------------------------------------------------------- /test/test-load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-jquery/HEAD/test/test-load.js --------------------------------------------------------------------------------