package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "meow",
  3. "version": "9.0.0",
  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": "^1.2.0",
  46. "decamelize-keys": "^1.1.0",
  47. "hard-rejection": "^2.1.0",
  48. "minimist-options": "4.1.0",
  49. "normalize-package-data": "^3.0.0",
  50. "read-pkg-up": "^7.0.1",
  51. "redent": "^3.0.0",
  52. "trim-newlines": "^3.0.0",
  53. "type-fest": "^0.18.0",
  54. "yargs-parser": "^20.2.3"
  55. },
  56. "devDependencies": {
  57. "ava": "^2.4.0",
  58. "execa": "^4.1.0",
  59. "indent-string": "^4.0.0",
  60. "tsd": "^0.13.1",
  61. "xo": "^0.34.1"
  62. },
  63. "xo": {
  64. "rules": {
  65. "unicorn/no-process-exit": "off",
  66. "node/no-unsupported-features/es-syntax": "off"
  67. },
  68. "ignores": [
  69. "estest/index.js"
  70. ]
  71. },
  72. "ava": {
  73. "files": [
  74. "test/*"
  75. ]
  76. }
  77. }