package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. {
  2. "name": "enquirer",
  3. "description": "Stylish, intuitive and user-friendly prompt system. Fast and lightweight enough for small projects, powerful and extensible enough for the most advanced use cases.",
  4. "version": "2.3.6",
  5. "homepage": "https://github.com/enquirer/enquirer",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Brian Woodward (https://twitter.com/doowb)",
  9. "Jon Schlinkert (http://twitter.com/jonschlinkert)"
  10. ],
  11. "repository": "enquirer/enquirer",
  12. "bugs": {
  13. "url": "https://github.com/enquirer/enquirer/issues"
  14. },
  15. "license": "MIT",
  16. "files": [
  17. "index.js",
  18. "index.d.ts",
  19. "lib"
  20. ],
  21. "main": "index.js",
  22. "engines": {
  23. "node": ">=8.6"
  24. },
  25. "scripts": {
  26. "test": "mocha && tsc -p ./test/types",
  27. "cover": "nyc --reporter=text --reporter=html mocha"
  28. },
  29. "dependencies": {
  30. "ansi-colors": "^4.1.1"
  31. },
  32. "devDependencies": {
  33. "@types/node": "^8",
  34. "gulp-format-md": "^2.0.0",
  35. "inquirer": "^6.2.0",
  36. "mocha": "^5.2.0",
  37. "nyc": "^13.1.0",
  38. "prompts": "^1.2.1",
  39. "time-require": "github:jonschlinkert/time-require",
  40. "typescript": "^3.1.6"
  41. },
  42. "keywords": [
  43. "answer",
  44. "answers",
  45. "ask",
  46. "base",
  47. "cli",
  48. "command",
  49. "command-line",
  50. "confirm",
  51. "enquirer",
  52. "generator",
  53. "generate",
  54. "hyper",
  55. "input",
  56. "inquire",
  57. "inquirer",
  58. "interface",
  59. "iterm",
  60. "javascript",
  61. "node",
  62. "nodejs",
  63. "prompt",
  64. "prompts",
  65. "promptly",
  66. "question",
  67. "readline",
  68. "scaffold",
  69. "scaffolding",
  70. "scaffolder",
  71. "stdin",
  72. "stdout",
  73. "terminal",
  74. "tty",
  75. "ui",
  76. "yeoman",
  77. "yo",
  78. "zsh"
  79. ],
  80. "lintDeps": {
  81. "devDependencies": {
  82. "files": {
  83. "patterns": [
  84. "examples/**/*.js",
  85. "perf/*.js",
  86. "recipes/*.js"
  87. ]
  88. }
  89. }
  90. },
  91. "verb": {
  92. "toc": false,
  93. "layout": false,
  94. "tasks": [
  95. "readme"
  96. ],
  97. "plugins": [
  98. "gulp-format-md"
  99. ],
  100. "helpers": [
  101. "./docs/helpers.js"
  102. ],
  103. "lint": {
  104. "reflinks": true
  105. },
  106. "reflinks": [
  107. "inquirer",
  108. "prompt-skeleton"
  109. ]
  110. }
  111. }