package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "yargs",
  3. "version": "14.2.3",
  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. "decamelize": "^1.2.0",
  24. "find-up": "^3.0.0",
  25. "get-caller-file": "^2.0.1",
  26. "require-directory": "^2.1.1",
  27. "require-main-filename": "^2.0.0",
  28. "set-blocking": "^2.0.0",
  29. "string-width": "^3.0.0",
  30. "which-module": "^2.0.0",
  31. "y18n": "^4.0.0",
  32. "yargs-parser": "^15.0.1"
  33. },
  34. "devDependencies": {
  35. "chai": "^4.2.0",
  36. "chalk": "^2.4.2",
  37. "coveralls": "^3.0.3",
  38. "cpr": "^3.0.1",
  39. "cross-spawn": "^6.0.4",
  40. "es6-promise": "^4.2.5",
  41. "hashish": "0.0.4",
  42. "mocha": "^5.2.0",
  43. "nyc": "^14.1.0",
  44. "rimraf": "^2.6.3",
  45. "standard": "^12.0.1",
  46. "standard-version": "^7.0.0",
  47. "which": "^1.3.1",
  48. "yargs-test-extends": "^1.0.1"
  49. },
  50. "scripts": {
  51. "pretest": "standard",
  52. "test": "nyc --cache mocha --require ./test/before.js --timeout=12000 --check-leaks",
  53. "coverage": "nyc report --reporter=text-lcov | coveralls",
  54. "release": "standard-version"
  55. },
  56. "repository": {
  57. "type": "git",
  58. "url": "https://github.com/yargs/yargs.git"
  59. },
  60. "homepage": "https://yargs.js.org/",
  61. "standard": {
  62. "ignore": [
  63. "**/example/**"
  64. ]
  65. },
  66. "keywords": [
  67. "argument",
  68. "args",
  69. "option",
  70. "parser",
  71. "parsing",
  72. "cli",
  73. "command"
  74. ],
  75. "license": "MIT",
  76. "engine": {
  77. "node": ">=6"
  78. }
  79. }