package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. {
  2. "name": "gulp-help",
  3. "version": "1.6.1",
  4. "description": "Adds a default help task to gulp and provides the ability to add custom help messages to your gulp tasks",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "mocha"
  8. },
  9. "keywords": [
  10. "gulp",
  11. "help",
  12. "tasks",
  13. "list",
  14. "gulpfriendly"
  15. ],
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/chmontgomery/gulp-help"
  19. },
  20. "bugs": {
  21. "url": "https://github.com/chmontgomery/gulp-help/issues"
  22. },
  23. "author": {
  24. "name": "Chris Montgomery",
  25. "email": "chr.montgomery@gmail.com",
  26. "url": "http://www.chrismontgomery.info/"
  27. },
  28. "contributors": [
  29. {
  30. "name": "Chris Montgomery",
  31. "url": "http://www.chrismontgomery.info/"
  32. },
  33. {
  34. "name": "Sascha Depold",
  35. "url": "http://depold.com"
  36. },
  37. {
  38. "name": "Scott Silvi",
  39. "url": "https://github.com/scottsilvi"
  40. },
  41. {
  42. "name": "Fede Ramirez",
  43. "url": "http://2fd.github.io/"
  44. },
  45. {
  46. "name": "Kent C. Dodds",
  47. "url": "https://github.com/kentcdodds"
  48. },
  49. {
  50. "name": "Rui Marinho",
  51. "url": "https://github.com/ruimarinho"
  52. },
  53. {
  54. "name": "Jacek Tomaszewski",
  55. "url": "https://github.com/jtomaszewski"
  56. },
  57. {
  58. "name": "MrFusion42",
  59. "url": "https://github.com/MrFusion42"
  60. },
  61. {
  62. "name": "Jordi Dosne",
  63. "url": "https://github.com/JiDai"
  64. },
  65. {
  66. "name": "yeojz",
  67. "url": "https://github.com/yeojz"
  68. }
  69. ],
  70. "engines": {
  71. "node": ">= 0.10"
  72. },
  73. "license": "MIT",
  74. "dependencies": {
  75. "chalk": "^1.0.0",
  76. "object-assign": "^3.0.0"
  77. },
  78. "devDependencies": {
  79. "mocha": "^2.2.5",
  80. "should": "^6.0.3",
  81. "sinon": "^1.14.1"
  82. }
  83. }