package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "name": "yargs",
  3. "version": "11.1.1",
  4. "description": "yargs the modern, pirate-themed, successor to optimist.",
  5. "main": "./index.js",
  6. "files": [
  7. "index.js",
  8. "yargs.js",
  9. "lib",
  10. "locales",
  11. "completion.sh.hbs",
  12. "LICENSE"
  13. ],
  14. "dependencies": {
  15. "cliui": "^4.0.0",
  16. "decamelize": "^1.1.1",
  17. "find-up": "^2.1.0",
  18. "get-caller-file": "^1.0.1",
  19. "os-locale": "^3.1.0",
  20. "require-directory": "^2.1.1",
  21. "require-main-filename": "^1.0.1",
  22. "set-blocking": "^2.0.0",
  23. "string-width": "^2.0.0",
  24. "which-module": "^2.0.0",
  25. "y18n": "^3.2.1",
  26. "yargs-parser": "^9.0.2"
  27. },
  28. "devDependencies": {
  29. "chai": "^4.1.2",
  30. "chalk": "^1.1.3",
  31. "coveralls": "^2.11.11",
  32. "cpr": "^2.0.0",
  33. "cross-spawn": "^6.0.4",
  34. "es6-promise": "^4.0.2",
  35. "hashish": "0.0.4",
  36. "mocha": "^3.0.1",
  37. "nyc": "^11.2.1",
  38. "rimraf": "^2.5.0",
  39. "standard": "^8.6.0",
  40. "standard-version": "^4.2.0",
  41. "which": "^1.2.9",
  42. "yargs-test-extends": "^1.0.1"
  43. },
  44. "scripts": {
  45. "posttest": "standard",
  46. "test": "nyc --cache mocha --require ./test/before.js --timeout=8000 --check-leaks",
  47. "coverage": "nyc report --reporter=text-lcov | coveralls",
  48. "release": "standard-version"
  49. },
  50. "repository": {
  51. "type": "git",
  52. "url": "http://github.com/yargs/yargs.git"
  53. },
  54. "homepage": "http://yargs.js.org/",
  55. "standard": {
  56. "ignore": [
  57. "**/example/**"
  58. ]
  59. },
  60. "keywords": [
  61. "argument",
  62. "args",
  63. "option",
  64. "parser",
  65. "parsing",
  66. "cli",
  67. "command"
  68. ],
  69. "license": "MIT",
  70. "engine": {
  71. "node": ">=4"
  72. }
  73. }