package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "inquirer",
  3. "version": "6.5.2",
  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": ">=6.0.0"
  21. },
  22. "devDependencies": {
  23. "chai": "^4.2.0",
  24. "chalk-pipe": "^2.0.0",
  25. "cmdify": "^0.0.4",
  26. "mocha": "^5.0.0",
  27. "mockery": "^2.1.0",
  28. "nyc": "^13.1.0",
  29. "sinon": "^7.1.1"
  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": "^3.2.0",
  41. "chalk": "^2.4.2",
  42. "cli-cursor": "^2.1.0",
  43. "cli-width": "^2.0.0",
  44. "external-editor": "^3.0.3",
  45. "figures": "^2.0.0",
  46. "lodash": "^4.17.12",
  47. "mute-stream": "0.0.7",
  48. "run-async": "^2.2.0",
  49. "rxjs": "^6.4.0",
  50. "string-width": "^2.1.0",
  51. "strip-ansi": "^5.1.0",
  52. "through": "^2.3.6"
  53. },
  54. "gitHead": "7d87f666042c67638d2e89bd4586d22f61e90130"
  55. }