.gitignore 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. __tests__/runner/*
  2. # Rest pulled from https://github.com/github/gitignore/blob/master/Node.gitignore
  3. # Logs
  4. logs
  5. *.log
  6. npm-debug.log*
  7. yarn-debug.log*
  8. yarn-error.log*
  9. lerna-debug.log*
  10. # Diagnostic reports (https://nodejs.org/api/report.html)
  11. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  12. # Runtime data
  13. pids
  14. *.pid
  15. *.seed
  16. *.pid.lock
  17. # Directory for instrumented libs generated by jscoverage/JSCover
  18. lib-cov
  19. # Coverage directory used by tools like istanbul
  20. coverage
  21. *.lcov
  22. # nyc test coverage
  23. .nyc_output
  24. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  25. .grunt
  26. # Bower dependency directory (https://bower.io/)
  27. bower_components
  28. # node-waf configuration
  29. .lock-wscript
  30. # Compiled binary addons (https://nodejs.org/api/addons.html)
  31. build/Release
  32. # Dependency directories
  33. jspm_packages/
  34. # TypeScript v1 declaration files
  35. typings/
  36. # TypeScript cache
  37. *.tsbuildinfo
  38. # Optional npm cache directory
  39. .npm
  40. # Optional eslint cache
  41. .eslintcache
  42. # Optional REPL history
  43. .node_repl_history
  44. # Output of 'npm pack'
  45. *.tgz
  46. # Yarn Integrity file
  47. .yarn-integrity
  48. # dotenv environment variables file
  49. .env
  50. .env.test
  51. # parcel-bundler cache (https://parceljs.org/)
  52. .cache
  53. # next.js build output
  54. .next
  55. # nuxt.js build output
  56. .nuxt
  57. # vuepress build output
  58. .vuepress/dist
  59. # Serverless directories
  60. .serverless/
  61. # FuseBox cache
  62. .fusebox/
  63. # DynamoDB Local files
  64. .dynamodb/