package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "now-and-later",
  3. "version": "2.0.0",
  4. "description": "Map over an array or object of values in parallel or series, passing each through the async iterator, with optional lifecycle hooks.",
  5. "author": "Gulp Team <team@gulpjs.com> (http://gulpjs.com/)",
  6. "contributors": [
  7. "Blaine Bublitz <blaine.bublitz@gmail.com>"
  8. ],
  9. "repository": "gulpjs/now-and-later",
  10. "license": "MIT",
  11. "engines": {
  12. "node": ">= 0.10"
  13. },
  14. "main": "index.js",
  15. "files": [
  16. "index.js",
  17. "lib",
  18. "LICENSE"
  19. ],
  20. "scripts": {
  21. "lint": "eslint . && jscs index.js lib/ test/",
  22. "pretest": "npm run lint",
  23. "test": "mocha --async-only",
  24. "cover": "istanbul cover _mocha --report lcovonly",
  25. "coveralls": "npm run cover && istanbul-coveralls"
  26. },
  27. "dependencies": {
  28. "once": "^1.3.2"
  29. },
  30. "devDependencies": {
  31. "eslint": "^1.7.3",
  32. "eslint-config-gulp": "^2.0.0",
  33. "expect": "^1.19.0",
  34. "istanbul": "^0.4.3",
  35. "istanbul-coveralls": "^1.0.3",
  36. "jscs": "^2.3.5",
  37. "jscs-preset-gulp": "^1.0.0",
  38. "mocha": "^2.4.5"
  39. },
  40. "keywords": [
  41. "async",
  42. "async.js",
  43. "map",
  44. "control",
  45. "flow",
  46. "extension",
  47. "tracing",
  48. "debug",
  49. "aop",
  50. "aspect",
  51. "timing",
  52. "tracing"
  53. ]
  54. }