package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "bach",
  3. "version": "1.2.0",
  4. "description": "Compose your async functions with elegance.",
  5. "author": "Gulp Team <team@gulpjs.com> (http://gulpjs.com/)",
  6. "contributors": [
  7. "Blaine Bublitz <blaine.bublitz@gmail.com>",
  8. "Pawel Kozlowski <pkozlowski.opensource@gmail.com>",
  9. "Benjamin Tan <demoneaux@gmail.com>"
  10. ],
  11. "repository": "gulpjs/bach",
  12. "license": "MIT",
  13. "engines": {
  14. "node": ">= 0.10"
  15. },
  16. "main": "index.js",
  17. "files": [
  18. "index.js",
  19. "lib",
  20. "LICENSE"
  21. ],
  22. "scripts": {
  23. "lint": "eslint . && jscs index.js lib/ test/",
  24. "pretest": "npm run lint",
  25. "test": "mocha --async-only",
  26. "cover": "istanbul cover _mocha --report lcovonly",
  27. "coveralls": "npm run cover && istanbul-coveralls"
  28. },
  29. "dependencies": {
  30. "arr-filter": "^1.1.1",
  31. "arr-flatten": "^1.0.1",
  32. "arr-map": "^2.0.0",
  33. "array-each": "^1.0.0",
  34. "array-initial": "^1.0.0",
  35. "array-last": "^1.1.1",
  36. "async-done": "^1.2.2",
  37. "async-settle": "^1.0.0",
  38. "now-and-later": "^2.0.0"
  39. },
  40. "devDependencies": {
  41. "eslint": "^1.7.3",
  42. "eslint-config-gulp": "^2.0.0",
  43. "expect": "^1.19.0",
  44. "istanbul": "^0.4.3",
  45. "istanbul-coveralls": "^1.0.3",
  46. "jscs": "^2.3.5",
  47. "jscs-preset-gulp": "^1.0.0",
  48. "mocha": "^2.4.5"
  49. },
  50. "keywords": [
  51. "compose",
  52. "fluent",
  53. "composing",
  54. "continuation",
  55. "function composition",
  56. "functional",
  57. "async",
  58. "map",
  59. "series",
  60. "parallel",
  61. "extension",
  62. "tracing",
  63. "debug",
  64. "timing",
  65. "aop",
  66. "settle",
  67. "promises",
  68. "callbacks",
  69. "observables",
  70. "streams",
  71. "end",
  72. "completion",
  73. "complete",
  74. "finish",
  75. "done",
  76. "error handling"
  77. ]
  78. }