index.js 614 B

123456789101112
  1. 'use strict'
  2. exports.directories = function () {
  3. return [
  4. '.git', // Git repository files, see <https://git-scm.com/>
  5. '.nyc_output', // Temporary directory where nyc stores coverage data, see <https://github.com/bcoe/nyc>
  6. '.sass-cache', // Cache folder for node-sass, see <https://github.com/sass/node-sass>
  7. 'bower_components', // Where Bower packages are installed, see <http://bower.io/>
  8. 'coverage', // Standard output directory for code coverage reports, see <https://github.com/gotwarlost/istanbul>
  9. 'node_modules' // Where Node modules are installed, see <https://nodejs.org/>
  10. ]
  11. }