.gitignore 830 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # Config file
  2. config.js
  3. # Logs
  4. logs
  5. *.log
  6. npm-debug.log*
  7. # Runtime data
  8. pids
  9. *.pid
  10. *.seed
  11. *.pid.lock
  12. # Directory for instrumented libs generated by jscoverage/JSCover
  13. lib-cov
  14. # Coverage directory used by tools like istanbul
  15. coverage
  16. # nyc test coverage
  17. .nyc_output
  18. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  19. .grunt
  20. # Bower dependency directory (https://bower.io/)
  21. bower_components
  22. # node-waf configuration
  23. .lock-wscript
  24. # Compiled binary addons (http://nodejs.org/api/addons.html)
  25. build/Release
  26. # Dependency directories
  27. node_modules
  28. jspm_packages
  29. # Optional npm cache directory
  30. .npm
  31. # Optional eslint cache
  32. .eslintcache
  33. # Optional REPL history
  34. .node_repl_history
  35. # Output of 'npm pack'
  36. *.tgz
  37. # Yarn Integrity file
  38. .yarn-integrity
  39. # dotenv environment variables file
  40. .env