Index: node_modules/vulcanize/node_modules/update-notifier/node_modules/chalk/node_modules/has-ansi/node_modules/ansi-regex/package.json |
diff --git a/node_modules/vulcanize/node_modules/update-notifier/node_modules/chalk/node_modules/has-ansi/node_modules/ansi-regex/package.json b/node_modules/vulcanize/node_modules/update-notifier/node_modules/chalk/node_modules/has-ansi/node_modules/ansi-regex/package.json |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a7e23fb62f0a6e76d12b4de662beff30aa233003 |
--- /dev/null |
+++ b/node_modules/vulcanize/node_modules/update-notifier/node_modules/chalk/node_modules/has-ansi/node_modules/ansi-regex/package.json |
@@ -0,0 +1,62 @@ |
+{ |
+ "name": "ansi-regex", |
+ "version": "0.2.1", |
+ "description": "Regular expression for matching ANSI escape codes", |
+ "license": "MIT", |
+ "repository": { |
+ "type": "git", |
+ "url": "git://github.com/sindresorhus/ansi-regex" |
+ }, |
+ "author": { |
+ "name": "Sindre Sorhus", |
+ "email": "sindresorhus@gmail.com", |
+ "url": "http://sindresorhus.com" |
+ }, |
+ "engines": { |
+ "node": ">=0.10.0" |
+ }, |
+ "scripts": { |
+ "test": "mocha" |
+ }, |
+ "files": [ |
+ "index.js" |
+ ], |
+ "keywords": [ |
+ "ansi", |
+ "styles", |
+ "color", |
+ "colour", |
+ "colors", |
+ "terminal", |
+ "console", |
+ "cli", |
+ "string", |
+ "tty", |
+ "escape", |
+ "formatting", |
+ "rgb", |
+ "256", |
+ "shell", |
+ "xterm", |
+ "command-line", |
+ "text", |
+ "regex", |
+ "regexp", |
+ "re", |
+ "match", |
+ "test", |
+ "find", |
+ "pattern" |
+ ], |
+ "devDependencies": { |
+ "mocha": "*" |
+ }, |
+ "readme": "# ansi-regex [](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```sh\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*It's a function so you can create multiple instances. Regexes with the global flag will have the `.lastIndex` property changed for each call to methods on the instance. Therefore reusing the instance with multiple calls will not work as expected for `.test()`.*\n\n\n## License\n\nMIT © [Sindre Sorhus](http://sindresorhus.com)\n", |
+ "readmeFilename": "readme.md", |
+ "bugs": { |
+ "url": "https://github.com/sindresorhus/ansi-regex/issues" |
+ }, |
+ "homepage": "https://github.com/sindresorhus/ansi-regex", |
+ "_id": "ansi-regex@0.2.1", |
+ "_from": "ansi-regex@^0.2.0" |
+} |