├── .editorconfig ├── .gitignore ├── LICENSE-MIT ├── package.json ├── readme.md └── tasks └── wiredep.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenplusplus/grunt-wiredep/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | *log 3 | -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenplusplus/grunt-wiredep/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenplusplus/grunt-wiredep/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenplusplus/grunt-wiredep/HEAD/readme.md -------------------------------------------------------------------------------- /tasks/wiredep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenplusplus/grunt-wiredep/HEAD/tasks/wiredep.js --------------------------------------------------------------------------------