package.json 580 B

12345678910111213141516171819
  1. {
  2. "name": "argsparser",
  3. "description": "A tiny command line arguments parser",
  4. "version": "0.0.6",
  5. "author": "Oleg Slobodskoi <[email protected]>",
  6. "repository": {
  7. "type": "git",
  8. "url": "http://github.com/kof/node-argsparser.git"
  9. },
  10. "keywords": [ "arguments", "options", "command line", "parser" ],
  11. "engines": { "node": ">= 0.2.0" },
  12. "scripts": { "test": "node ./test/test.js" },
  13. "licenses": [
  14. {
  15. "type": "MIT",
  16. "url" : "http://www.opensource.org/licenses/mit-license.php"
  17. }
  18. ]
  19. }