package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "undertaker",
  3. "version": "1.3.0",
  4. "description": "Task registry that allows composition through series/parallel methods.",
  5. "author": "Gulp Team <team@gulpjs.com> (https://gulpjs.com/)",
  6. "contributors": [
  7. "Blaine Bublitz <blaine.bublitz@gmail.com>",
  8. "Damien Lebrun <dinoboff@hotmail.com>"
  9. ],
  10. "repository": "gulpjs/undertaker",
  11. "license": "MIT",
  12. "engines": {
  13. "node": ">= 0.10"
  14. },
  15. "main": "index.js",
  16. "files": [
  17. "LICENSE",
  18. "index.js",
  19. "lib"
  20. ],
  21. "scripts": {
  22. "lint": "eslint .",
  23. "pretest": "npm run lint",
  24. "test": "nyc mocha --async-only",
  25. "azure-pipelines": "nyc mocha --async-only --reporter xunit -O output=test.xunit",
  26. "coveralls": "nyc report --reporter=text-lcov | coveralls"
  27. },
  28. "dependencies": {
  29. "arr-flatten": "^1.0.1",
  30. "arr-map": "^2.0.0",
  31. "bach": "^1.0.0",
  32. "collection-map": "^1.0.0",
  33. "es6-weak-map": "^2.0.1",
  34. "last-run": "^1.1.0",
  35. "object.defaults": "^1.0.0",
  36. "object.reduce": "^1.0.0",
  37. "undertaker-registry": "^1.0.0",
  38. "fast-levenshtein": "^1.0.0"
  39. },
  40. "devDependencies": {
  41. "async-once": "^1.0.0",
  42. "coveralls": "github:phated/node-coveralls#2.x",
  43. "del": "^2.0.2",
  44. "eslint": "^2.13.1",
  45. "eslint-config-gulp": "^3.0.1",
  46. "expect": "^1.20.2",
  47. "gulp-jshint": "^1.8.4",
  48. "mocha": "^3.0.0",
  49. "nyc": "^10.3.2",
  50. "once": "^1.3.1",
  51. "through2": "^2.0.0",
  52. "undertaker-common-tasks": "^1.0.0",
  53. "undertaker-task-metadata": "^1.0.0",
  54. "vinyl-fs": "^2.2.0"
  55. },
  56. "keywords": [
  57. "registry",
  58. "runner",
  59. "task"
  60. ]
  61. }