package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "gulp-cli",
  3. "version": "2.3.0",
  4. "description": "Command line interface for gulp",
  5. "author": "Gulp Team <team@gulpjs.com> (https://gulpjs.com/)",
  6. "contributors": [],
  7. "homepage": "https://gulpjs.com",
  8. "repository": "gulpjs/gulp-cli",
  9. "license": "MIT",
  10. "man": "gulp.1",
  11. "engines": {
  12. "node": ">= 0.10"
  13. },
  14. "main": "index.js",
  15. "bin": {
  16. "gulp": "bin/gulp.js"
  17. },
  18. "files": [
  19. "index.js",
  20. "lib",
  21. "bin",
  22. "completion",
  23. "gulp.1"
  24. ],
  25. "scripts": {
  26. "lint": "eslint .",
  27. "prepublish": "marked-man --name gulp docs/CLI.md > gulp.1",
  28. "pretest": "npm run lint",
  29. "test": "mocha --async-only --timeout 5000 test/lib test",
  30. "cover": "nyc --reporter=lcov --reporter=text-summary npm test",
  31. "coveralls": "nyc --reporter=text-lcov npm test | coveralls"
  32. },
  33. "dependencies": {
  34. "ansi-colors": "^1.0.1",
  35. "archy": "^1.0.0",
  36. "array-sort": "^1.0.0",
  37. "concat-stream": "^1.6.0",
  38. "color-support": "^1.1.3",
  39. "copy-props": "^2.0.1",
  40. "fancy-log": "^1.3.2",
  41. "gulplog": "^1.0.0",
  42. "interpret": "^1.4.0",
  43. "isobject": "^3.0.1",
  44. "liftoff": "^3.1.0",
  45. "matchdep": "^2.0.0",
  46. "mute-stdout": "^1.0.0",
  47. "pretty-hrtime": "^1.0.0",
  48. "replace-homedir": "^1.0.0",
  49. "semver-greatest-satisfied-range": "^1.1.0",
  50. "v8flags": "^3.2.0",
  51. "yargs": "^7.1.0"
  52. },
  53. "devDependencies": {
  54. "babel-preset-es2015": "^6.5.0",
  55. "babel-register": "^6.5.1",
  56. "coveralls": "^3.0.3",
  57. "eslint": "^2.13.1",
  58. "eslint-config-gulp": "^3.0.1",
  59. "expect": "^1.20.2",
  60. "gulp": "^4.0.0",
  61. "gulp-test-tools": "^0.6.1",
  62. "marked-man": "^0.2.1",
  63. "mocha": "^3.2.0",
  64. "nyc": "^13.3.0",
  65. "rimraf": "^2.6.1",
  66. "semver": "^5.7.1"
  67. },
  68. "keywords": [
  69. "build",
  70. "stream",
  71. "system",
  72. "make",
  73. "tool",
  74. "asset",
  75. "pipeline"
  76. ]
  77. }