| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 | {  "name": "has-ansi",  "version": "2.0.0",  "description": "Check if a string has ANSI escape codes",  "license": "MIT",  "repository": "sindresorhus/has-ansi",  "author": {    "name": "Sindre Sorhus",    "email": "sindresorhus@gmail.com",    "url": "sindresorhus.com"  },  "maintainers": [    "Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)",    "Joshua Appelman <jappelman@xebia.com> (jbnicolai.com)"  ],  "engines": {    "node": ">=0.10.0"  },  "scripts": {    "test": "node test.js"  },  "files": [    "index.js"  ],  "keywords": [    "ansi",    "styles",    "color",    "colour",    "colors",    "terminal",    "console",    "string",    "tty",    "escape",    "shell",    "xterm",    "command-line",    "text",    "regex",    "regexp",    "re",    "match",    "test",    "find",    "pattern",    "has"  ],  "dependencies": {    "ansi-regex": "^2.0.0"  },  "devDependencies": {    "ava": "0.0.4"  }}
 |