package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "inquirer",
  3. "version": "7.3.3",
  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": ">=8.0.0"
  21. },
  22. "devDependencies": {
  23. "chai": "^4.2.0",
  24. "chalk-pipe": "^4.0.0",
  25. "cmdify": "^0.0.4",
  26. "mocha": "^8.0.1",
  27. "mockery": "^2.1.0",
  28. "nyc": "^15.0.0",
  29. "sinon": "^9.0.0"
  30. },
  31. "scripts": {
  32. "test": "nyc mocha test/**/* -r ./test/before",
  33. "posttest": "nyc report --reporter=text-lcov > ../../coverage/nyc-report.lcov",
  34. "prepublishOnly": "cp ../../README.md .",
  35. "postpublish": "rm -f README.md"
  36. },
  37. "repository": "SBoudrias/Inquirer.js",
  38. "license": "MIT",
  39. "dependencies": {
  40. "ansi-escapes": "^4.2.1",
  41. "chalk": "^4.1.0",
  42. "cli-cursor": "^3.1.0",
  43. "cli-width": "^3.0.0",
  44. "external-editor": "^3.0.3",
  45. "figures": "^3.0.0",
  46. "lodash": "^4.17.19",
  47. "mute-stream": "0.0.8",
  48. "run-async": "^2.4.0",
  49. "rxjs": "^6.6.0",
  50. "string-width": "^4.1.0",
  51. "strip-ansi": "^6.0.0",
  52. "through": "^2.3.6"
  53. },
  54. "gitHead": "808d5538531c1ca1c34f832d77bc98dfd0ba4000"
  55. }