vs/v5.0.0/node_modules/npm/node_modules/ansi-regex/package.json

{
  "_args": [
    [
      "ansi-regex@^2.0.0",
      "/Users/rebecca/code/npm/node_modules/chalk/node_modules/strip-ansi"
    ]
  ],
  "_from": "ansi-regex@>=2.0.0 <3.0.0",
  "_id": "ansi-regex@2.0.0",
  "_inCache": true,
  "_location": "/ansi-regex",
  "_nodeVersion": "0.12.5",
  "_npmUser": {
    "email": "sindresorhus@gmail.com",
    "name": "sindresorhus"
  },
  "_npmVersion": "2.11.2",
  "_phantomChildren": {},
  "_requested": {
    "name": "ansi-regex",
    "raw": "ansi-regex@^2.0.0",
    "rawSpec": "^2.0.0",
    "scope": null,
    "spec": ">=2.0.0 <3.0.0",
    "type": "range"
  },
  "_requiredBy": [
    "/columnify/strip-ansi",
    "/has-ansi",
    "/strip-ansi"
  ],
  "_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.0.0.tgz",
  "_shasum": "c5061b6e0ef8a81775e50f5d66151bf6bf371107",
  "_shrinkwrap": null,
  "_spec": "ansi-regex@^2.0.0",
  "_where": "/Users/rebecca/code/npm/node_modules/chalk/node_modules/strip-ansi",
  "author": {
    "email": "sindresorhus@gmail.com",
    "name": "Sindre Sorhus",
    "url": "sindresorhus.com"
  },
  "bugs": {
    "url": "https://github.com/sindresorhus/ansi-regex/issues"
  },
  "dependencies": {},
  "description": "Regular expression for matching ANSI escape codes",
  "devDependencies": {
    "mocha": "*"
  },
  "directories": {},
  "dist": {
    "shasum": "c5061b6e0ef8a81775e50f5d66151bf6bf371107",
    "tarball": "http://registry.npmjs.org/ansi-regex/-/ansi-regex-2.0.0.tgz"
  },
  "engines": {
    "node": ">=0.10.0"
  },
  "files": [
    "index.js"
  ],
  "gitHead": "57c3f2941a73079fa8b081e02a522e3d29913e2f",
  "homepage": "https://github.com/sindresorhus/ansi-regex",
  "keywords": [
    "256",
    "ansi",
    "cli",
    "color",
    "colors",
    "colour",
    "command-line",
    "console",
    "escape",
    "find",
    "formatting",
    "match",
    "pattern",
    "re",
    "regex",
    "regexp",
    "rgb",
    "shell",
    "string",
    "styles",
    "terminal",
    "test",
    "text",
    "tty",
    "xterm"
  ],
  "license": "MIT",
  "maintainers": [
    {
      "name": "sindresorhus",
      "email": "sindresorhus@gmail.com"
    },
    {
      "name": "jbnicolai",
      "email": "jappelman@xebia.com"
    }
  ],
  "name": "ansi-regex",
  "optionalDependencies": {},
  "readme": "# ansi-regex [![Build Status](https://travis-ci.org/sindresorhus/ansi-regex.svg?branch=master)](https://travis-ci.org/sindresorhus/ansi-regex)\n\n> Regular expression for matching [ANSI escape codes](http://en.wikipedia.org/wiki/ANSI_escape_code)\n\n\n## Install\n\n```\n$ npm install --save ansi-regex\n```\n\n\n## Usage\n\n```js\nvar ansiRegex = require('ansi-regex');\n\nansiRegex().test('\\u001b[4mcake\\u001b[0m');\n//=> true\n\nansiRegex().test('cake');\n//=> false\n\n'\\u001b[4mcake\\u001b[0m'.match(ansiRegex());\n//=> ['\\u001b[4m', '\\u001b[0m']\n```\n\n\n## License\n\nMIT © [Sindre Sorhus](http://sindresorhus.com)\n",
  "readmeFilename": "readme.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sindresorhus/ansi-regex.git"
  },
  "scripts": {
    "test": "mocha test/test.js",
    "view-supported": "node test/viewCodes.js"
  },
  "version": "2.0.0"
}