package.json 680 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "clap",
  3. "title": "Command line argument parser",
  4. "description": "Command line argument parser",
  5. "author": "Roman Dvornov <rdvornov@gmail.com>",
  6. "license": "MIT",
  7. "version": "1.2.3",
  8. "keywords": [
  9. "cli",
  10. "command",
  11. "option",
  12. "argument",
  13. "completion"
  14. ],
  15. "homepage": "https://github.com/lahmatiy/clap",
  16. "repository": "lahmatiy/clap",
  17. "main": "index.js",
  18. "files": [
  19. "index.js",
  20. "HISTORY.md",
  21. "LICENSE",
  22. "README.md"
  23. ],
  24. "engines": {
  25. "node": ">=0.10.0"
  26. },
  27. "dependencies": {
  28. "chalk": "^1.1.3"
  29. },
  30. "devDependencies": {
  31. "mocha": "^2.4.5"
  32. },
  33. "scripts": {
  34. "test": "mocha test -R spec"
  35. }
  36. }