package.json 914 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "optionator",
  3. "version": "0.8.3",
  4. "author": "George Zahariev <z@georgezahariev.com>",
  5. "description": "option parsing and help generation",
  6. "homepage": "https://github.com/gkz/optionator",
  7. "keywords": [
  8. "options",
  9. "flags",
  10. "option parsing",
  11. "cli"
  12. ],
  13. "files": [
  14. "lib",
  15. "README.md",
  16. "LICENSE"
  17. ],
  18. "main": "./lib/",
  19. "bugs": "https://github.com/gkz/optionator/issues",
  20. "license": "MIT",
  21. "engines": {
  22. "node": ">= 0.8.0"
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git://github.com/gkz/optionator.git"
  27. },
  28. "scripts": {
  29. "test": "make test"
  30. },
  31. "dependencies": {
  32. "prelude-ls": "~1.1.2",
  33. "deep-is": "~0.1.3",
  34. "word-wrap": "~1.2.3",
  35. "type-check": "~0.3.2",
  36. "levn": "~0.3.0",
  37. "fast-levenshtein": "~2.0.6"
  38. },
  39. "devDependencies": {
  40. "livescript": "~1.6.0",
  41. "mocha": "~6.2.2",
  42. "istanbul": "~0.4.5"
  43. }
  44. }