├── .gitignore ├── .travis.yml ├── Gruntfile.js ├── README.md ├── package.json ├── tasks ├── composer.coffee └── lib │ └── commandBuilder.coffee └── test ├── commandBuilderSpec.coffee ├── composerSpec.coffee └── integration └── composer.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/grunt-composer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/grunt-composer/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/grunt-composer/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/grunt-composer/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/grunt-composer/HEAD/package.json -------------------------------------------------------------------------------- /tasks/composer.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/grunt-composer/HEAD/tasks/composer.coffee -------------------------------------------------------------------------------- /tasks/lib/commandBuilder.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/grunt-composer/HEAD/tasks/lib/commandBuilder.coffee -------------------------------------------------------------------------------- /test/commandBuilderSpec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/grunt-composer/HEAD/test/commandBuilderSpec.coffee -------------------------------------------------------------------------------- /test/composerSpec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/grunt-composer/HEAD/test/composerSpec.coffee -------------------------------------------------------------------------------- /test/integration/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voceconnect/grunt-composer/HEAD/test/integration/composer.json --------------------------------------------------------------------------------