package.json 792 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "dargs",
  3. "version": "6.1.0",
  4. "description": "Reverse minimist. Convert an object of options into an array of command-line arguments.",
  5. "license": "MIT",
  6. "repository": "sindresorhus/dargs",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=6"
  14. },
  15. "scripts": {
  16. "test": "xo && ava && tsd"
  17. },
  18. "files": [
  19. "index.js",
  20. "index.d.ts"
  21. ],
  22. "keywords": [
  23. "reverse",
  24. "minimist",
  25. "options",
  26. "arguments",
  27. "args",
  28. "flags",
  29. "cli",
  30. "nopt",
  31. "commander",
  32. "bin",
  33. "binary",
  34. "command",
  35. "cmd",
  36. "inverse",
  37. "opposite",
  38. "invert",
  39. "switch",
  40. "construct",
  41. "parse",
  42. "parser",
  43. "argv"
  44. ],
  45. "devDependencies": {
  46. "ava": "^1.4.1",
  47. "tsd": "^0.7.2",
  48. "xo": "^0.24.0"
  49. }
  50. }