.npmignore 949 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. # Created by https://www.gitignore.io
  2. ### OSX ###
  3. .DS_Store
  4. .AppleDouble
  5. .LSOverride
  6. # Icon must end with two \r
  7. Icon
  8. # Thumbnails
  9. ._*
  10. # Files that might appear in the root of a volume
  11. .DocumentRevisions-V100
  12. .fseventsd
  13. .Spotlight-V100
  14. .TemporaryItems
  15. .Trashes
  16. .VolumeIcon.icns
  17. # Directories potentially created on remote AFP share
  18. .AppleDB
  19. .AppleDesktop
  20. Network Trash Folder
  21. Temporary Items
  22. .apdisk
  23. ### Node ###
  24. # Logs
  25. logs
  26. *.log
  27. # Runtime data
  28. pids
  29. *.pid
  30. *.seed
  31. # Directory for instrumented libs generated by jscoverage/JSCover
  32. lib-cov
  33. # Coverage directory used by tools like istanbul
  34. coverage
  35. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  36. .grunt
  37. # node-waf configuration
  38. .lock-wscript
  39. # Compiled binary addons (http://nodejs.org/api/addons.html)
  40. build/Release
  41. # Dependency directory
  42. # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
  43. node_modules