Nav apraksta

package.json 643B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "dargs",
  3. "version": "2.1.0",
  4. "description": "Convert an object of options into an array of command-line arguments",
  5. "repository": "sindresorhus/dargs",
  6. "keywords": [
  7. "options",
  8. "arguments",
  9. "args",
  10. "flags",
  11. "cli",
  12. "nopt",
  13. "minimist",
  14. "bin",
  15. "binary",
  16. "command",
  17. "cmd"
  18. ],
  19. "author": {
  20. "name": "Sindre Sorhus",
  21. "email": "sindresorhus@gmail.com",
  22. "url": "http://sindresorhus.com"
  23. },
  24. "scripts": {
  25. "test": "mocha"
  26. },
  27. "devDependencies": {
  28. "mocha": "*"
  29. },
  30. "engines": {
  31. "node": ">=0.10.0"
  32. },
  33. "license": "MIT",
  34. "files": [
  35. "index.js"
  36. ]
  37. }