package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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.4.1",
  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. "strip-ansi": "^6.0.1"
  32. },
  33. "devDependencies": {
  34. "@types/node": "^8",
  35. "gulp-format-md": "^2.0.0",
  36. "inquirer": "^6.2.0",
  37. "mocha": "^5.2.0",
  38. "nyc": "^13.1.0",
  39. "prompts": "^1.2.1",
  40. "time-require": "github:jonschlinkert/time-require",
  41. "typescript": "^3.1.6"
  42. },
  43. "keywords": [
  44. "answer",
  45. "answers",
  46. "ask",
  47. "base",
  48. "cli",
  49. "command",
  50. "command-line",
  51. "confirm",
  52. "enquirer",
  53. "generator",
  54. "generate",
  55. "hyper",
  56. "input",
  57. "inquire",
  58. "inquirer",
  59. "interface",
  60. "iterm",
  61. "javascript",
  62. "node",
  63. "nodejs",
  64. "prompt",
  65. "prompts",
  66. "promptly",
  67. "question",
  68. "readline",
  69. "scaffold",
  70. "scaffolding",
  71. "scaffolder",
  72. "stdin",
  73. "stdout",
  74. "terminal",
  75. "tty",
  76. "ui",
  77. "yeoman",
  78. "yo",
  79. "zsh"
  80. ],
  81. "lintDeps": {
  82. "devDependencies": {
  83. "files": {
  84. "patterns": [
  85. "examples/**/*.js",
  86. "perf/*.js",
  87. "recipes/*.js"
  88. ]
  89. }
  90. }
  91. },
  92. "verb": {
  93. "toc": false,
  94. "layout": false,
  95. "tasks": [
  96. "readme"
  97. ],
  98. "plugins": [
  99. "gulp-format-md"
  100. ],
  101. "helpers": [
  102. "./docs/helpers.js"
  103. ],
  104. "lint": {
  105. "reflinks": true
  106. },
  107. "reflinks": [
  108. "inquirer",
  109. "prompt-skeleton"
  110. ]
  111. }
  112. }