package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "prompts",
  3. "version": "2.4.2",
  4. "description": "Lightweight, beautiful and user-friendly prompts",
  5. "license": "MIT",
  6. "repository": "terkelg/prompts",
  7. "main": "index.js",
  8. "author": {
  9. "name": "Terkel Gjervig",
  10. "email": "terkel@terkel.com",
  11. "url": "https://terkel.com"
  12. },
  13. "files": [
  14. "lib",
  15. "dist",
  16. "index.js"
  17. ],
  18. "scripts": {
  19. "start": "node lib/index.js",
  20. "build": "babel lib -d dist",
  21. "prepublishOnly": "npm run build",
  22. "test": "tape test/*.js | tap-spec"
  23. },
  24. "keywords": [
  25. "ui",
  26. "prompts",
  27. "cli",
  28. "prompt",
  29. "interface",
  30. "command-line",
  31. "input",
  32. "command",
  33. "stdin",
  34. "menu",
  35. "ask",
  36. "interact"
  37. ],
  38. "dependencies": {
  39. "kleur": "^3.0.3",
  40. "sisteransi": "^1.0.5"
  41. },
  42. "devDependencies": {
  43. "@babel/cli": "^7.12.1",
  44. "@babel/core": "^7.12.3",
  45. "@babel/plugin-proposal-object-rest-spread": "^7.12.1",
  46. "@babel/preset-env": "^7.12.1",
  47. "tap-spec": "^2.2.2",
  48. "tape": "^4.13.3"
  49. },
  50. "engines": {
  51. "node": ">= 6"
  52. }
  53. }