package.json 868 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "yargs-parser",
  3. "version": "4.2.1",
  4. "description": "the mighty option parser used by yargs",
  5. "main": "index.js",
  6. "scripts": {
  7. "pretest": "standard",
  8. "test": "nyc mocha test/*.js",
  9. "coverage": "nyc report --reporter=text-lcov | coveralls",
  10. "release": "standard-version"
  11. },
  12. "repository": {
  13. "url": "git@github.com:yargs/yargs-parser.git"
  14. },
  15. "keywords": [
  16. "argument",
  17. "parser",
  18. "yargs",
  19. "command",
  20. "cli",
  21. "parsing",
  22. "option",
  23. "args",
  24. "argument"
  25. ],
  26. "author": "Ben Coe <ben@npmjs.com>",
  27. "license": "ISC",
  28. "devDependencies": {
  29. "chai": "^3.5.0",
  30. "coveralls": "^2.11.12",
  31. "mocha": "^3.0.1",
  32. "nyc": "^10.0.0",
  33. "standard": "^8.0.0",
  34. "standard-version": "^4.0.0"
  35. },
  36. "dependencies": {
  37. "camelcase": "^3.0.0"
  38. },
  39. "files": [
  40. "lib",
  41. "index.js"
  42. ]
  43. }