package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "undertaker",
  3. "version": "1.2.1",
  4. "description": "Task registry that allows composition through series/parallel methods.",
  5. "author": "Gulp Team <team@gulpjs.com> (http://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 . && jscs index.js lib/ test/",
  23. "pretest": "npm run lint",
  24. "test": "mocha --async-only",
  25. "cover": "istanbul cover _mocha --report lcovonly",
  26. "coveralls": "npm run cover && istanbul-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. },
  39. "devDependencies": {
  40. "async-once": "^1.0.0",
  41. "del": "^2.0.2",
  42. "eslint": "^1.7.3",
  43. "eslint-config-gulp": "^2.0.0",
  44. "expect": "^1.19.0",
  45. "gulp-jshint": "^1.8.4",
  46. "istanbul": "^0.4.3",
  47. "istanbul-coveralls": "^1.0.3",
  48. "jscs": "^2.3.5",
  49. "jscs-preset-gulp": "^1.0.0",
  50. "mocha": "^2.4.5",
  51. "once": "^1.3.1",
  52. "through2": "^2.0.0",
  53. "undertaker-common-tasks": "^1.0.0",
  54. "undertaker-task-metadata": "^1.0.0",
  55. "vinyl-fs": "^2.2.0"
  56. },
  57. "keywords": [
  58. "registry",
  59. "runner",
  60. "task"
  61. ]
  62. }