package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "inquirer",
  3. "version": "8.2.6",
  4. "description": "A collection of common interactive command line user interfaces.",
  5. "author": "Simon Boudrias <admin@simonboudrias.com>",
  6. "files": [
  7. "lib",
  8. "README.md"
  9. ],
  10. "main": "lib/inquirer.js",
  11. "keywords": [
  12. "command",
  13. "prompt",
  14. "stdin",
  15. "cli",
  16. "tty",
  17. "menu"
  18. ],
  19. "engines": {
  20. "node": ">=12.0.0"
  21. },
  22. "devDependencies": {
  23. "chai": "^4.3.6",
  24. "chai-string": "^1.5.0",
  25. "chalk-pipe": "^5.1.1",
  26. "cmdify": "^0.0.4",
  27. "mocha": "^9.2.2",
  28. "mockery": "^2.1.0",
  29. "nyc": "^15.0.0",
  30. "sinon": "^13.0.2",
  31. "terminal-link": "^2.1.1"
  32. },
  33. "scripts": {
  34. "test": "nyc mocha test/**/* -r ./test/before",
  35. "posttest": "mkdir -p ../../coverage && nyc report --reporter=text-lcov > ../../coverage/nyc-report.lcov",
  36. "prepublishOnly": "cp ../../README.md .",
  37. "postpublish": "rm -f README.md"
  38. },
  39. "repository": "SBoudrias/Inquirer.js",
  40. "license": "MIT",
  41. "dependencies": {
  42. "ansi-escapes": "^4.2.1",
  43. "chalk": "^4.1.1",
  44. "cli-cursor": "^3.1.0",
  45. "cli-width": "^3.0.0",
  46. "external-editor": "^3.0.3",
  47. "figures": "^3.0.0",
  48. "lodash": "^4.17.21",
  49. "mute-stream": "0.0.8",
  50. "ora": "^5.4.1",
  51. "run-async": "^2.4.0",
  52. "rxjs": "^7.5.5",
  53. "string-width": "^4.1.0",
  54. "strip-ansi": "^6.0.0",
  55. "through": "^2.3.6",
  56. "wrap-ansi": "^6.0.1"
  57. },
  58. "gitHead": "30ec0483de28849e56bd6b9b61daaabf8edea16f"
  59. }