package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. {
  2. "name": "yargs",
  3. "version": "3.10.0",
  4. "description": "Light-weight option parsing with an argv hash. No optstrings attached.",
  5. "main": "./index.js",
  6. "files": [
  7. "index.js",
  8. "lib",
  9. "completion.sh.hbs",
  10. "LICENSE"
  11. ],
  12. "dependencies": {
  13. "camelcase": "^1.0.2",
  14. "cliui": "^2.1.0",
  15. "decamelize": "^1.0.0",
  16. "window-size": "0.1.0"
  17. },
  18. "devDependencies": {
  19. "chai": "^2.2.0",
  20. "coveralls": "^2.11.2",
  21. "hashish": "0.0.4",
  22. "mocha": "^2.2.1",
  23. "nyc": "^2.2.1",
  24. "standard": "^3.11.1"
  25. },
  26. "scripts": {
  27. "test": "standard && nyc mocha --check-leaks && nyc report",
  28. "coverage": "nyc report --reporter=text-lcov | coveralls"
  29. },
  30. "repository": {
  31. "type": "git",
  32. "url": "http://github.com/bcoe/yargs.git"
  33. },
  34. "standard": {
  35. "ignore": [
  36. "**/example/**"
  37. ],
  38. "globals": [
  39. "it"
  40. ]
  41. },
  42. "keywords": [
  43. "argument",
  44. "args",
  45. "option",
  46. "parser",
  47. "parsing",
  48. "cli",
  49. "command"
  50. ],
  51. "author": {
  52. "name": "Alex Ford",
  53. "email": "Alex.Ford@CodeTunnel.com",
  54. "url": "http://CodeTunnel.com"
  55. },
  56. "contributors": [
  57. {
  58. "name": "Benjamin Coe",
  59. "email": "ben@npmjs.com",
  60. "url": "https://github.com/bcoe"
  61. },
  62. {
  63. "name": "Chris Needham",
  64. "email": "chris@chrisneedham.com",
  65. "url": "http://chrisneedham.com"
  66. },
  67. {
  68. "name": "James Nylen",
  69. "email": "jnylen@gmail.com",
  70. "url": "https://github.com/nylen"
  71. },
  72. {
  73. "name": "Benjamin Horsleben",
  74. "url": "https://github.com/fizker"
  75. },
  76. {
  77. "name": "Lin Clark",
  78. "url": "https://github.com/linclark"
  79. }
  80. ],
  81. "license": "MIT",
  82. "engine": {
  83. "node": ">=0.4"
  84. },
  85. "__npminstall_done": true,
  86. "_from": "yargs@3.10.0",
  87. "_resolved": "https://registry.npmmirror.com/yargs/-/yargs-3.10.0.tgz"
  88. }