├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .travis.yml ├── LICENSE ├── README.md ├── app ├── index.js └── templates │ ├── Readme.md │ ├── _package.json │ ├── bin │ └── cmdrexec │ ├── cmds │ └── command.js │ ├── editorconfig │ ├── gitignore │ ├── jshintrc │ ├── lib │ └── component.js │ ├── test │ └── test.js │ └── travis.yml ├── command └── index.js ├── component └── index.js ├── package.json ├── test ├── test-creation.js └── test-load.js └── todo.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypercubed/generator-commander/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | temp/ 3 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypercubed/generator-commander/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypercubed/generator-commander/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypercubed/generator-commander/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypercubed/generator-commander/HEAD/README.md -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypercubed/generator-commander/HEAD/app/index.js -------------------------------------------------------------------------------- /app/templates/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypercubed/generator-commander/HEAD/app/templates/Readme.md -------------------------------------------------------------------------------- /app/templates/_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypercubed/generator-commander/HEAD/app/templates/_package.json -------------------------------------------------------------------------------- /app/templates/bin/cmdrexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypercubed/generator-commander/HEAD/app/templates/bin/cmdrexec -------------------------------------------------------------------------------- /app/templates/cmds/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypercubed/generator-commander/HEAD/app/templates/cmds/command.js -------------------------------------------------------------------------------- /app/templates/editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypercubed/generator-commander/HEAD/app/templates/editorconfig -------------------------------------------------------------------------------- /app/templates/gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | npm-debug.log -------------------------------------------------------------------------------- /app/templates/jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypercubed/generator-commander/HEAD/app/templates/jshintrc -------------------------------------------------------------------------------- /app/templates/lib/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypercubed/generator-commander/HEAD/app/templates/lib/component.js -------------------------------------------------------------------------------- /app/templates/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypercubed/generator-commander/HEAD/app/templates/test/test.js -------------------------------------------------------------------------------- /app/templates/travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypercubed/generator-commander/HEAD/app/templates/travis.yml -------------------------------------------------------------------------------- /command/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypercubed/generator-commander/HEAD/command/index.js -------------------------------------------------------------------------------- /component/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypercubed/generator-commander/HEAD/component/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypercubed/generator-commander/HEAD/package.json -------------------------------------------------------------------------------- /test/test-creation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypercubed/generator-commander/HEAD/test/test-creation.js -------------------------------------------------------------------------------- /test/test-load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypercubed/generator-commander/HEAD/test/test-load.js -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hypercubed/generator-commander/HEAD/todo.md --------------------------------------------------------------------------------