.npmignore 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. # Include your project-specific ignores in this file
  2. # Read about how to use .gitignore: https://help.github.com/articles/ignoring-files
  3. build
  4. node_modules
  5. ncp-debug.log
  6. npm-debug.log
  7. # Generated by https://www.gitignore.io
  8. ### SublimeText ###
  9. # cache files for sublime text
  10. *.tmlanguage.cache
  11. *.tmPreferences.cache
  12. *.stTheme.cache
  13. # workspace files are user-specific
  14. *.sublime-workspace
  15. # project files should be checked into the repository, unless a significant
  16. # proportion of contributors will probably not be using SublimeText
  17. *.sublime-project
  18. # sftp configuration file
  19. sftp-config.json
  20. ### Windows ###
  21. # Windows image file caches
  22. Thumbs.db
  23. ehthumbs.db
  24. # Folder config file
  25. Desktop.ini
  26. # Recycle Bin used on file shares
  27. $RECYCLE.BIN/
  28. # Windows Installer files
  29. *.cab
  30. *.msi
  31. *.msm
  32. *.msp
  33. # Windows shortcuts
  34. *.lnk
  35. ### OSX ###
  36. .DS_Store
  37. .AppleDouble
  38. .LSOverride
  39. # Thumbnails
  40. ._*
  41. # Files that might appear in the root of a volume
  42. .DocumentRevisions-V100
  43. .fseventsd
  44. .Spotlight-V100
  45. .TemporaryItems
  46. .Trashes
  47. .VolumeIcon.icns
  48. # Directories potentially created on remote AFP share
  49. .AppleDB
  50. .AppleDesktop
  51. Network Trash Folder
  52. Temporary Items
  53. .apdisk
  54. ### Node ###
  55. # Logs
  56. *.log
  57. npm-debug.log*
  58. # Runtime data
  59. pids
  60. *.pid
  61. *.seed
  62. # Directory for instrumented libs generated by jscoverage/JSCover
  63. lib-cov
  64. # Coverage directory used by tools like istanbul
  65. coverage
  66. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  67. .grunt
  68. # node-waf configuration
  69. .lock-wscript
  70. # Compiled binary addons (http://nodejs.org/api/addons.html)
  71. build/Release
  72. # Dependency directories
  73. node_modules
  74. jspm_packages
  75. # Optional npm cache directory
  76. .npm
  77. # Optional REPL history
  78. .node_repl_history