package.json 523 B

1234567891011121314151617181920212223
  1. {
  2. "name": "nopt",
  3. "version": "4.0.1",
  4. "description": "Option parsing for Node, supporting types, shorthands, etc. Used by npm.",
  5. "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
  6. "main": "lib/nopt.js",
  7. "scripts": {
  8. "test": "tap test/*.js"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/npm/nopt.git"
  13. },
  14. "bin": "./bin/nopt.js",
  15. "license": "ISC",
  16. "dependencies": {
  17. "abbrev": "1",
  18. "osenv": "^0.1.4"
  19. },
  20. "devDependencies": {
  21. "tap": "^8.0.1"
  22. }
  23. }