################################################ ############### .gitignore ################## ################################################ # # This file is only relevant if you are using git. # # Files which match the splat patterns below will # be ignored by git. This keeps random crap and # sensitive credentials from being uploaded to # your repository. It allows you to configure your # app for your machine without accidentally # committing settings which will smash the local # settings of other developers on your team. # # Some reasonable defaults are included below, # but, of course, you should modify/extend/prune # to fit your needs! ################################################ ################################################ # Local Configuration ################################################ logs *.log ################################################ # Dependencies ################################################ node_modules bower_components jspm_packages ################################################ # Sails.js / Waterline / Grunt # # Files generated by Sails and Grunt, or related # tasks and adapters. ################################################ .tmp dump.rdb ################################################ # Node.js / NPM # # Common files generated by Node, NPM, and the # related ecosystem. ################################################ lib-cov pids *.seed *.log *.out *.pid *.pid.lock npm-debug.log .npm *.tgz ################################################ # yarn # # Common files generated by yarn # related ecosystem. ################################################ yarn-debug.log* yarn-error.log* .yarn-integrity ################################################ # Miscellaneous # # Common files generated by text editors, # operating systems, file systems, etc. ################################################ *~ *# .DS_STORE .netbeans nbproject .idea .node_history coverage .env # nyc test coverage .nyc_output # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) .grunt # node-waf configuration .lock-wscript # Compiled binary addons (http://nodejs.org/api/addons.html) build/Release # Typescript v1 declaration files typings/ # Optional eslint cache .eslintcache # Optional REPL history .node_repl_history