package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "name": "meow",
  3. "version": "8.1.2",
  4. "description": "CLI app helper",
  5. "license": "MIT",
  6. "repository": "sindresorhus/meow",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "engines": {
  14. "node": ">=10"
  15. },
  16. "scripts": {
  17. "test": "xo && ava && tsd"
  18. },
  19. "files": [
  20. "index.js",
  21. "index.d.ts"
  22. ],
  23. "keywords": [
  24. "cli",
  25. "bin",
  26. "util",
  27. "utility",
  28. "helper",
  29. "argv",
  30. "command",
  31. "line",
  32. "meow",
  33. "cat",
  34. "kitten",
  35. "parser",
  36. "option",
  37. "flags",
  38. "input",
  39. "cmd",
  40. "console"
  41. ],
  42. "dependencies": {
  43. "@types/minimist": "^1.2.0",
  44. "camelcase-keys": "^6.2.2",
  45. "decamelize-keys": "^1.1.0",
  46. "hard-rejection": "^2.1.0",
  47. "minimist-options": "4.1.0",
  48. "normalize-package-data": "^3.0.0",
  49. "read-pkg-up": "^7.0.1",
  50. "redent": "^3.0.0",
  51. "trim-newlines": "^3.0.0",
  52. "type-fest": "^0.18.0",
  53. "yargs-parser": "^20.2.3"
  54. },
  55. "devDependencies": {
  56. "ava": "^2.4.0",
  57. "execa": "^4.1.0",
  58. "indent-string": "^4.0.0",
  59. "tsd": "^0.13.1",
  60. "xo": "^0.34.1"
  61. },
  62. "xo": {
  63. "rules": {
  64. "unicorn/no-process-exit": "off",
  65. "node/no-unsupported-features/es-syntax": "off"
  66. },
  67. "ignores": [
  68. "estest/index.js"
  69. ]
  70. },
  71. "ava": {
  72. "files": [
  73. "test/*"
  74. ]
  75. }
  76. }