1{ 2 "name": "wrap-ansi", 3 "version": "7.0.0", 4 "description": "Wordwrap a string with ANSI escape codes", 5 "license": "MIT", 6 "repository": "chalk/wrap-ansi", 7 "funding": "https://github.com/chalk/wrap-ansi?sponsor=1", 8 "author": { 9 "name": "Sindre Sorhus", 10 "email": "sindresorhus@gmail.com", 11 "url": "https://sindresorhus.com" 12 }, 13 "engines": { 14 "node": ">=10" 15 }, 16 "scripts": { 17 "test": "xo && nyc ava" 18 }, 19 "files": [ 20 "index.js" 21 ], 22 "keywords": [ 23 "wrap", 24 "break", 25 "wordwrap", 26 "wordbreak", 27 "linewrap", 28 "ansi", 29 "styles", 30 "color", 31 "colour", 32 "colors", 33 "terminal", 34 "console", 35 "cli", 36 "string", 37 "tty", 38 "escape", 39 "formatting", 40 "rgb", 41 "256", 42 "shell", 43 "xterm", 44 "log", 45 "logging", 46 "command-line", 47 "text" 48 ], 49 "dependencies": { 50 "ansi-styles": "^4.0.0", 51 "string-width": "^4.1.0", 52 "strip-ansi": "^6.0.0" 53 }, 54 "devDependencies": { 55 "ava": "^2.1.0", 56 "chalk": "^4.0.0", 57 "coveralls": "^3.0.3", 58 "has-ansi": "^4.0.0", 59 "nyc": "^15.0.1", 60 "xo": "^0.29.1" 61 } 62} 63