.npmignore 585 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # Compiled source #
  2. ###################
  3. *.com
  4. *.class
  5. *.dll
  6. *.exe
  7. *.o
  8. *.so
  9. # OS generated files #
  10. ######################
  11. .DS_Store*
  12. ehthumbs.db
  13. Icon?
  14. Thumbs.db
  15. Desktop.ini
  16. .Spotlight-V100
  17. .Trashes
  18. ._*
  19. # NetBeans #
  20. ############
  21. nbsettings/
  22. nbproject/
  23. nbbuild/
  24. nbdist/
  25. nbactions.xml
  26. nb-configuration.xml
  27. # Textmate #
  28. ############
  29. *.tmproj
  30. *.tmproject
  31. tmtags
  32. # VIM #
  33. #######
  34. .*.sw[a-z]
  35. *.un~
  36. Session.vim
  37. # Sublime TextEditor #
  38. ######################
  39. *.sublime-project
  40. # Eclipse #
  41. ######################
  42. /.project
  43. /.settings
  44. # Node #
  45. ######################
  46. node_modules
  47. npm-debug.*