package.json 981 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "subarg",
  3. "version": "1.0.0",
  4. "description": "parse arguments with recursive contexts",
  5. "main": "index.js",
  6. "dependencies": {
  7. "minimist": "^1.1.0"
  8. },
  9. "devDependencies": {
  10. "tape": "^3.0.0"
  11. },
  12. "scripts": {
  13. "test": "tape test/*.js"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git://github.com/substack/subarg.git"
  18. },
  19. "homepage": "https://github.com/substack/subarg",
  20. "keywords": [
  21. "argument",
  22. "option",
  23. "parser",
  24. "parsing",
  25. "flags",
  26. "command-line",
  27. "cli",
  28. "recursive",
  29. "minimist"
  30. ],
  31. "author": {
  32. "name": "James Halliday",
  33. "email": "mail@substack.net",
  34. "url": "http://substack.net"
  35. },
  36. "license": "MIT",
  37. "testling": {
  38. "files": "test/*.js",
  39. "browsers": [
  40. "ie/8..latest",
  41. "firefox/16", "firefox/latest", "firefox/nightly",
  42. "chrome/22", "chrome/latest", "chrome/canary",
  43. "opera/12..latest", "opera/next",
  44. "safari/5.1..latest"
  45. ]
  46. }
  47. }