설명 없음

package.json 1.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "meow",
  3. "version": "3.7.0",
  4. "description": "CLI app helper",
  5. "license": "MIT",
  6. "repository": "sindresorhus/meow",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=0.10.0"
  14. },
  15. "scripts": {
  16. "test": "xo && ava"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "cli",
  23. "bin",
  24. "util",
  25. "utility",
  26. "helper",
  27. "argv",
  28. "command",
  29. "line",
  30. "meow",
  31. "cat",
  32. "kitten",
  33. "parser",
  34. "option",
  35. "flags",
  36. "input",
  37. "cmd",
  38. "console"
  39. ],
  40. "dependencies": {
  41. "camelcase-keys": "^2.0.0",
  42. "decamelize": "^1.1.2",
  43. "loud-rejection": "^1.0.0",
  44. "map-obj": "^1.0.1",
  45. "minimist": "^1.1.3",
  46. "normalize-package-data": "^2.3.4",
  47. "object-assign": "^4.0.1",
  48. "read-pkg-up": "^1.0.1",
  49. "redent": "^1.0.0",
  50. "trim-newlines": "^1.0.0"
  51. },
  52. "devDependencies": {
  53. "ava": "*",
  54. "execa": "^0.1.1",
  55. "indent-string": "^2.1.0",
  56. "xo": "*"
  57. }
  58. }