├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── gulpfile.js ├── index.js ├── package.json └── tests ├── fileSystemUtils.js ├── fixtures ├── bowerConflict.json ├── bowerValid.json ├── bowerrcEmpty.json └── bowerrcValid.json └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-bower/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-bower/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-bower/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-bower/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-bower/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-bower/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-bower/HEAD/package.json -------------------------------------------------------------------------------- /tests/fileSystemUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-bower/HEAD/tests/fileSystemUtils.js -------------------------------------------------------------------------------- /tests/fixtures/bowerConflict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-bower/HEAD/tests/fixtures/bowerConflict.json -------------------------------------------------------------------------------- /tests/fixtures/bowerValid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-bower/HEAD/tests/fixtures/bowerValid.json -------------------------------------------------------------------------------- /tests/fixtures/bowerrcEmpty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/bowerrcValid.json: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bowerrc_components" 3 | } 4 | -------------------------------------------------------------------------------- /tests/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-bower/HEAD/tests/test.js --------------------------------------------------------------------------------