package.json 696 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "has-flag",
  3. "version": "4.0.0",
  4. "description": "Check if argv has a specific flag",
  5. "license": "MIT",
  6. "repository": "sindresorhus/has-flag",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=8"
  14. },
  15. "scripts": {
  16. "test": "xo && ava && tsd"
  17. },
  18. "files": [
  19. "index.js",
  20. "index.d.ts"
  21. ],
  22. "keywords": [
  23. "has",
  24. "check",
  25. "detect",
  26. "contains",
  27. "find",
  28. "flag",
  29. "cli",
  30. "command-line",
  31. "argv",
  32. "process",
  33. "arg",
  34. "args",
  35. "argument",
  36. "arguments",
  37. "getopt",
  38. "minimist",
  39. "optimist"
  40. ],
  41. "devDependencies": {
  42. "ava": "^1.4.1",
  43. "tsd": "^0.7.2",
  44. "xo": "^0.24.0"
  45. }
  46. }