package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. "name": "yargs",
  3. "version": "3.5.4",
  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. "decamelize": "^1.0.0",
  15. "window-size": "0.1.0",
  16. "wordwrap": "0.0.2"
  17. },
  18. "devDependencies": {
  19. "blanket": "^1.1.6",
  20. "chai": "^1.10.0",
  21. "coveralls": "^2.11.2",
  22. "hashish": "0.0.4",
  23. "mocha": "2.1.0",
  24. "mocha-lcov-reporter": "0.0.1",
  25. "mocoverage": "^1.0.0"
  26. },
  27. "scripts": {
  28. "test": "mocha --check-leaks --ui exports --require blanket -R mocoverage"
  29. },
  30. "repository": {
  31. "type": "git",
  32. "url": "http://github.com/bcoe/yargs.git"
  33. },
  34. "config": {
  35. "blanket": {
  36. "pattern": [
  37. "lib",
  38. "index.js"
  39. ],
  40. "data-cover-never": [
  41. "node_modules",
  42. "test"
  43. ],
  44. "output-reporter": "spec"
  45. }
  46. },
  47. "keywords": [
  48. "argument",
  49. "args",
  50. "option",
  51. "parser",
  52. "parsing",
  53. "cli",
  54. "command"
  55. ],
  56. "author": {
  57. "name": "Alex Ford",
  58. "email": "Alex.Ford@CodeTunnel.com",
  59. "url": "http://CodeTunnel.com"
  60. },
  61. "contributors": [
  62. {
  63. "name": "Benjamin Coe",
  64. "email": "ben@npmjs.com",
  65. "url": "https://github.com/bcoe"
  66. },
  67. {
  68. "name": "Chris Needham",
  69. "email": "chris@chrisneedham.com",
  70. "url": "http://chrisneedham.com"
  71. },
  72. {
  73. "name": "James Nylen",
  74. "email": "jnylen@gmail.com",
  75. "url": "https://github.com/nylen"
  76. },
  77. {
  78. "name": "Benjamin Horsleben",
  79. "url": "https://github.com/fizker"
  80. }
  81. ],
  82. "license": "MIT/X11",
  83. "engine": {
  84. "node": ">=0.4"
  85. },
  86. "__npminstall_done": true,
  87. "_from": "yargs@3.5.4",
  88. "_resolved": "https://registry.npmmirror.com/yargs/-/yargs-3.5.4.tgz"
  89. }