• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2	"name": "wrap-ansi",
3	"version": "8.1.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	"type": "module",
14	"exports": {
15		"types": "./index.d.ts",
16		"default": "./index.js"
17	},
18	"engines": {
19		"node": ">=12"
20	},
21	"scripts": {
22		"test": "xo && nyc ava && tsd"
23	},
24	"files": [
25		"index.js",
26		"index.d.ts"
27	],
28	"keywords": [
29		"wrap",
30		"break",
31		"wordwrap",
32		"wordbreak",
33		"linewrap",
34		"ansi",
35		"styles",
36		"color",
37		"colour",
38		"colors",
39		"terminal",
40		"console",
41		"cli",
42		"string",
43		"tty",
44		"escape",
45		"formatting",
46		"rgb",
47		"256",
48		"shell",
49		"xterm",
50		"log",
51		"logging",
52		"command-line",
53		"text"
54	],
55	"dependencies": {
56		"ansi-styles": "^6.1.0",
57		"string-width": "^5.0.1",
58		"strip-ansi": "^7.0.1"
59	},
60	"devDependencies": {
61		"ava": "^3.15.0",
62		"chalk": "^4.1.2",
63		"coveralls": "^3.1.1",
64		"has-ansi": "^5.0.1",
65		"nyc": "^15.1.0",
66		"tsd": "^0.25.0",
67		"xo": "^0.44.0"
68	}
69}
70