package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "yargs",
  3. "version": "13.3.2",
  4. "description": "yargs the modern, pirate-themed, successor to optimist.",
  5. "main": "./index.js",
  6. "contributors": [
  7. {
  8. "name": "Yargs Contributors",
  9. "url": "https://github.com/yargs/yargs/graphs/contributors"
  10. }
  11. ],
  12. "files": [
  13. "index.js",
  14. "yargs.js",
  15. "lib",
  16. "locales",
  17. "completion.sh.hbs",
  18. "completion.zsh.hbs",
  19. "LICENSE"
  20. ],
  21. "dependencies": {
  22. "cliui": "^5.0.0",
  23. "find-up": "^3.0.0",
  24. "get-caller-file": "^2.0.1",
  25. "require-directory": "^2.1.1",
  26. "require-main-filename": "^2.0.0",
  27. "set-blocking": "^2.0.0",
  28. "string-width": "^3.0.0",
  29. "which-module": "^2.0.0",
  30. "y18n": "^4.0.0",
  31. "yargs-parser": "^13.1.2"
  32. },
  33. "devDependencies": {
  34. "chai": "^4.2.0",
  35. "chalk": "^2.4.2",
  36. "coveralls": "^3.0.3",
  37. "cpr": "^3.0.1",
  38. "cross-spawn": "^6.0.4",
  39. "es6-promise": "^4.2.5",
  40. "hashish": "0.0.4",
  41. "mocha": "^5.2.0",
  42. "nyc": "^14.1.0",
  43. "rimraf": "^2.6.3",
  44. "standard": "^12.0.1",
  45. "standard-version": "^6.0.1",
  46. "which": "^1.3.1",
  47. "yargs-test-extends": "^1.0.1"
  48. },
  49. "scripts": {
  50. "pretest": "standard",
  51. "test": "nyc --cache mocha --require ./test/before.js --timeout=12000 --check-leaks",
  52. "coverage": "nyc report --reporter=text-lcov | coveralls",
  53. "release": "standard-version"
  54. },
  55. "repository": {
  56. "type": "git",
  57. "url": "https://github.com/yargs/yargs.git"
  58. },
  59. "homepage": "https://yargs.js.org/",
  60. "standard": {
  61. "ignore": [
  62. "**/example/**"
  63. ]
  64. },
  65. "keywords": [
  66. "argument",
  67. "args",
  68. "option",
  69. "parser",
  70. "parsing",
  71. "cli",
  72. "command"
  73. ],
  74. "license": "MIT",
  75. "engine": {
  76. "node": ">=6"
  77. }
  78. }