package.json 703 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "dashdash",
  3. "description": "A light, featureful and explicit option parsing library.",
  4. "version": "1.14.1",
  5. "author": "Trent Mick <trentm@gmail.com> (http://trentm.com)",
  6. "keywords": ["option", "parser", "parsing", "cli", "command", "args",
  7. "bash", "completion"],
  8. "repository": {
  9. "type": "git",
  10. "url": "git://github.com/trentm/node-dashdash.git"
  11. },
  12. "main": "./lib/dashdash.js",
  13. "dependencies": {
  14. "assert-plus": "^1.0.0"
  15. },
  16. "devDependencies": {
  17. "nodeunit": "0.9.x"
  18. },
  19. "engines": {
  20. "node": ">=0.10"
  21. },
  22. "scripts": {
  23. "test": "nodeunit test/*.test.js"
  24. },
  25. "license": "MIT"
  26. }