package.json 913 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "has-flag",
  3. "version": "1.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. "maintainers": [
  13. "Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)",
  14. "Joshua Appelman <jappelman@xebia.com> (jbnicolai.com)",
  15. "JD Ballard <i.am.qix@gmail.com> (github.com/qix-)"
  16. ],
  17. "engines": {
  18. "node": ">=0.10.0"
  19. },
  20. "scripts": {
  21. "test": "node test.js"
  22. },
  23. "files": [
  24. "index.js"
  25. ],
  26. "keywords": [
  27. "has",
  28. "check",
  29. "detect",
  30. "contains",
  31. "find",
  32. "flag",
  33. "cli",
  34. "command-line",
  35. "argv",
  36. "process",
  37. "arg",
  38. "args",
  39. "argument",
  40. "arguments",
  41. "getopt",
  42. "minimist",
  43. "optimist"
  44. ],
  45. "devDependencies": {
  46. "ava": "0.0.4"
  47. }
  48. }