package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "inquirer",
  3. "version": "8.2.4",
  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. "chalk-pipe": "^5.1.1",
  25. "cmdify": "^0.0.4",
  26. "mocha": "^9.2.2",
  27. "mockery": "^2.1.0",
  28. "nyc": "^15.0.0",
  29. "sinon": "^13.0.2",
  30. "terminal-link": "^2.1.1"
  31. },
  32. "scripts": {
  33. "test": "nyc mocha test/**/* -r ./test/before",
  34. "posttest": "nyc report --reporter=text-lcov > ../../coverage/nyc-report.lcov",
  35. "prepublishOnly": "cp ../../README.md .",
  36. "postpublish": "rm -f README.md"
  37. },
  38. "repository": "SBoudrias/Inquirer.js",
  39. "license": "MIT",
  40. "dependencies": {
  41. "ansi-escapes": "^4.2.1",
  42. "chalk": "^4.1.1",
  43. "cli-cursor": "^3.1.0",
  44. "cli-width": "^3.0.0",
  45. "external-editor": "^3.0.3",
  46. "figures": "^3.0.0",
  47. "lodash": "^4.17.21",
  48. "mute-stream": "0.0.8",
  49. "ora": "^5.4.1",
  50. "run-async": "^2.4.0",
  51. "rxjs": "^7.5.5",
  52. "string-width": "^4.1.0",
  53. "strip-ansi": "^6.0.0",
  54. "through": "^2.3.6",
  55. "wrap-ansi": "^7.0.0"
  56. },
  57. "gitHead": "83b807522ca6e10ab90a6921eac9d9655e2dac38"
  58. }