.gitignore 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. node_modules/
  34. jspm_packages/
  35. # TypeScript v1 declaration files
  36. typings/
  37. # TypeScript cache
  38. *.tsbuildinfo
  39. # Optional npm cache directory
  40. .npm
  41. # Optional eslint cache
  42. .eslintcache
  43. # Optional REPL history
  44. .node_repl_history
  45. # Output of 'npm pack'
  46. *.tgz
  47. # Yarn Integrity file
  48. .yarn-integrity
  49. # dotenv environment variables file
  50. .env
  51. .env.test
  52. # parcel-bundler cache (https://parceljs.org/)
  53. .cache
  54. # next.js build output
  55. .next
  56. # nuxt.js build output
  57. .nuxt
  58. # vuepress build output
  59. .vuepress/dist
  60. # Serverless directories
  61. .serverless/
  62. # FuseBox cache
  63. .fusebox/
  64. # DynamoDB Local files
  65. .dynamodb/