Нема описа

package.json 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "gulp",
  3. "description": "The streaming build system",
  4. "version": "3.9.1",
  5. "homepage": "http://gulpjs.com",
  6. "repository": "gulpjs/gulp",
  7. "author": "Fractal <contact@wearefractal.com> (http://wearefractal.com/)",
  8. "tags": [
  9. "build",
  10. "stream",
  11. "system",
  12. "make",
  13. "tool",
  14. "asset",
  15. "pipeline"
  16. ],
  17. "files": [
  18. "index.js",
  19. "lib",
  20. "bin",
  21. "completion",
  22. "gulp.1"
  23. ],
  24. "bin": {
  25. "gulp": "./bin/gulp.js"
  26. },
  27. "man": "gulp.1",
  28. "dependencies": {
  29. "archy": "^1.0.0",
  30. "chalk": "^1.0.0",
  31. "deprecated": "^0.0.1",
  32. "gulp-util": "^3.0.0",
  33. "interpret": "^1.0.0",
  34. "liftoff": "^2.1.0",
  35. "minimist": "^1.1.0",
  36. "orchestrator": "^0.3.0",
  37. "pretty-hrtime": "^1.0.0",
  38. "semver": "^4.1.0",
  39. "tildify": "^1.0.0",
  40. "v8flags": "^2.0.2",
  41. "vinyl-fs": "^0.3.0"
  42. },
  43. "devDependencies": {
  44. "coveralls": "^2.7.0",
  45. "eslint": "^1.7.3",
  46. "eslint-config-gulp": "^2.0.0",
  47. "graceful-fs": "^3.0.0",
  48. "istanbul": "^0.3.0",
  49. "jscs": "^2.3.5",
  50. "jscs-preset-gulp": "^1.0.0",
  51. "marked-man": "^0.1.3",
  52. "mkdirp": "^0.5.0",
  53. "mocha": "^2.0.1",
  54. "mocha-lcov-reporter": "^0.0.1",
  55. "q": "^1.0.0",
  56. "rimraf": "^2.2.5",
  57. "should": "^5.0.1"
  58. },
  59. "scripts": {
  60. "prepublish": "marked-man --name gulp docs/CLI.md > gulp.1",
  61. "lint": "eslint . && jscs *.js bin/ lib/ test/",
  62. "pretest": "npm run lint",
  63. "test": "mocha --reporter spec",
  64. "coveralls": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
  65. },
  66. "engines": {
  67. "node": ">= 0.9"
  68. },
  69. "license": "MIT"
  70. }