package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "gulp",
  3. "version": "4.0.2",
  4. "description": "The streaming build system.",
  5. "homepage": "https://gulpjs.com",
  6. "author": "Gulp Team <team@gulpjs.com> (https://gulpjs.com/)",
  7. "contributors": [
  8. "Eric Schoffstall <yo@contra.io>",
  9. "Blaine Bublitz <blaine.bublitz@gmail.com>"
  10. ],
  11. "repository": "gulpjs/gulp",
  12. "license": "MIT",
  13. "engines": {
  14. "node": ">= 0.10"
  15. },
  16. "main": "index.js",
  17. "files": [
  18. "LICENSE",
  19. "index.js",
  20. "bin"
  21. ],
  22. "bin": {
  23. "gulp": "./bin/gulp.js"
  24. },
  25. "scripts": {
  26. "lint": "eslint .",
  27. "pretest": "npm run lint",
  28. "test": "nyc mocha --async-only",
  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. "glob-watcher": "^5.0.3",
  34. "gulp-cli": "^2.2.0",
  35. "undertaker": "^1.2.1",
  36. "vinyl-fs": "^3.0.0"
  37. },
  38. "devDependencies": {
  39. "coveralls": "github:phated/node-coveralls#2.x",
  40. "eslint": "^2.13.1",
  41. "eslint-config-gulp": "^3.0.1",
  42. "expect": "^1.20.2",
  43. "mkdirp": "^0.5.1",
  44. "mocha": "^3.0.0",
  45. "nyc": "^10.3.2",
  46. "rimraf": "^2.6.3"
  47. },
  48. "keywords": [
  49. "build",
  50. "stream",
  51. "system",
  52. "make",
  53. "tool",
  54. "asset",
  55. "pipeline",
  56. "series",
  57. "parallel",
  58. "streaming"
  59. ]
  60. }