版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1 год назад
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "liftoff",
  3. "version": "4.0.0",
  4. "description": "Launch your command line tool with ease.",
  5. "author": "Gulp Team <team@gulpjs.com> (https://gulpjs.com/)",
  6. "contributors": [
  7. "Blaine Bublitz <blaine.bublitz@gmail.com> (https://github.com/phated)",
  8. "Tyler Kellen <tyler@sleekcode.net> (https://github.com/tkellen)",
  9. "Takayuki Sato (https://github.com/sttk)"
  10. ],
  11. "repository": "gulpjs/liftoff",
  12. "license": "MIT",
  13. "engines": {
  14. "node": ">=10.13.0"
  15. },
  16. "main": "index.js",
  17. "files": [
  18. "index.js",
  19. "lib",
  20. "LICENSE"
  21. ],
  22. "scripts": {
  23. "lint": "eslint .",
  24. "pretest": "npm run lint",
  25. "test": "nyc mocha --async-only"
  26. },
  27. "dependencies": {
  28. "extend": "^3.0.2",
  29. "findup-sync": "^5.0.0",
  30. "fined": "^2.0.0",
  31. "flagged-respawn": "^2.0.0",
  32. "is-plain-object": "^5.0.0",
  33. "object.map": "^1.0.1",
  34. "rechoir": "^0.8.0",
  35. "resolve": "^1.20.0"
  36. },
  37. "devDependencies": {
  38. "coffeescript": "^2.6.1",
  39. "eslint": "^7.0.0",
  40. "eslint-config-gulp": "^5.0.0",
  41. "eslint-config-prettier": "^6.11.0",
  42. "eslint-plugin-node": "^11.1.0",
  43. "expect": "^27.0.0",
  44. "mocha": "^8.0.0",
  45. "nyc": "^15.0.0",
  46. "sinon": "^11.0.0"
  47. },
  48. "nyc": {
  49. "reporter": [
  50. "lcov",
  51. "text-summary"
  52. ]
  53. },
  54. "prettier": {
  55. "singleQuote": true
  56. },
  57. "keywords": [
  58. "command line"
  59. ]
  60. }