package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "async-done",
  3. "version": "1.3.2",
  4. "description": "Allows libraries to handle various caller provided asynchronous functions uniformly. Maps promises, observables, child processes and streams, and callbacks to callback style.",
  5. "author": "Gulp Team <team@gulpjs.com> (https://gulpjs.com/)",
  6. "contributors": [
  7. "Blaine Bublitz <blaine.bublitz@gmail.com>",
  8. "Pawel Kozlowski <pkozlowski.opensource@gmail.com>",
  9. "Matthew Podwysocki <matthew.podwysocki@gmail.com>",
  10. "Charles Samborski <demurgos@demurgos.net>"
  11. ],
  12. "repository": "gulpjs/async-done",
  13. "license": "MIT",
  14. "engines": {
  15. "node": ">= 0.10"
  16. },
  17. "main": "index.js",
  18. "types": "index.d.ts",
  19. "files": [
  20. "index.js",
  21. "index.d.ts",
  22. "LICENSE"
  23. ],
  24. "scripts": {
  25. "lint": "eslint .",
  26. "pretest": "npm run lint",
  27. "test": "nyc mocha --async-only",
  28. "test-types": "tsc -p test/types",
  29. "azure-pipelines": "nyc mocha --async-only --reporter xunit -O output=test.xunit",
  30. "coveralls": "nyc report --reporter=text-lcov | coveralls"
  31. },
  32. "dependencies": {
  33. "end-of-stream": "^1.1.0",
  34. "once": "^1.3.2",
  35. "process-nextick-args": "^2.0.0",
  36. "stream-exhaust": "^1.0.1"
  37. },
  38. "devDependencies": {
  39. "@types/node": "^9.3.0",
  40. "coveralls": "github:phated/node-coveralls#2.x",
  41. "eslint": "^2.13.1",
  42. "eslint-config-gulp": "^3.0.1",
  43. "expect": "^1.20.2",
  44. "mocha": "^3.0.0",
  45. "nyc": "^10.3.2",
  46. "pumpify": "^1.3.6",
  47. "rxjs": "^5.5.6",
  48. "through2": "^2.0.0",
  49. "typescript": "^2.6.2",
  50. "when": "^3.7.3"
  51. },
  52. "keywords": [
  53. "promises",
  54. "callbacks",
  55. "observables",
  56. "streams",
  57. "end",
  58. "completion",
  59. "complete",
  60. "finish",
  61. "done",
  62. "async",
  63. "error handling"
  64. ]
  65. }