package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "yargs",
  3. "version": "7.1.2",
  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. "camelcase": "^3.0.0",
  16. "cliui": "^3.2.0",
  17. "decamelize": "^1.1.1",
  18. "get-caller-file": "^1.0.1",
  19. "os-locale": "^1.4.0",
  20. "read-pkg-up": "^1.0.1",
  21. "require-directory": "^2.1.1",
  22. "require-main-filename": "^1.0.1",
  23. "set-blocking": "^2.0.0",
  24. "string-width": "^1.0.2",
  25. "which-module": "^1.0.0",
  26. "y18n": "^3.2.1",
  27. "yargs-parser": "^5.0.1"
  28. },
  29. "devDependencies": {
  30. "chai": "^3.4.1",
  31. "chalk": "^1.1.3",
  32. "coveralls": "^2.11.11",
  33. "cpr": "^2.0.0",
  34. "cross-spawn": "^5.0.1",
  35. "es6-promise": "^4.0.2",
  36. "hashish": "0.0.4",
  37. "mocha": "^3.0.1",
  38. "nyc": "^10.0.0",
  39. "rimraf": "^2.5.0",
  40. "standard": "^8.6.0",
  41. "standard-version": "^3.0.0",
  42. "which": "^1.2.9"
  43. },
  44. "scripts": {
  45. "pretest": "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": ">=0.10"
  72. },
  73. "greenkeeper": {
  74. "ignore": [
  75. "string-width",
  76. "read-pkg-up",
  77. "camelcase"
  78. ]
  79. }
  80. }