| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 | {  "name": "string-width",  "version": "1.0.2",  "description": "Get the visual width of a string - the number of columns required to display it",  "license": "MIT",  "repository": "sindresorhus/string-width",  "author": {    "name": "Sindre Sorhus",    "email": "sindresorhus@gmail.com",    "url": "sindresorhus.com"  },  "engines": {    "node": ">=0.10.0"  },  "scripts": {    "test": "xo && ava"  },  "files": [    "index.js"  ],  "keywords": [    "string",    "str",    "character",    "char",    "unicode",    "width",    "visual",    "column",    "columns",    "fullwidth",    "full-width",    "full",    "ansi",    "escape",    "codes",    "cli",    "command-line",    "terminal",    "console",    "cjk",    "chinese",    "japanese",    "korean",    "fixed-width"  ],  "dependencies": {    "code-point-at": "^1.0.0",    "is-fullwidth-code-point": "^1.0.0",    "strip-ansi": "^3.0.0"  },  "devDependencies": {    "ava": "*",    "xo": "*"  }}
 |