mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.2 KiB
77 lines
2.2 KiB
{
|
|
"name": "ansi-regex",
|
|
"version": "2.0.0",
|
|
"description": "Regular expression for matching ANSI escape codes",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/sindresorhus/ansi-regex.git"
|
|
},
|
|
"author": {
|
|
"name": "Sindre Sorhus",
|
|
"email": "sindresorhus@gmail.com",
|
|
"url": "sindresorhus.com"
|
|
},
|
|
"maintainers": [
|
|
{
|
|
"name": "Sindre Sorhus",
|
|
"email": "sindresorhus@gmail.com",
|
|
"url": "sindresorhus.com"
|
|
},
|
|
{
|
|
"name": "Joshua Appelman",
|
|
"email": "jappelman@xebia.com",
|
|
"url": "jbnicolai.com"
|
|
}
|
|
],
|
|
"engines": {
|
|
"node": ">=0.10.0"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha test/test.js",
|
|
"view-supported": "node test/viewCodes.js"
|
|
},
|
|
"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 [![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",
|
|
"bugs": {
|
|
"url": "https://github.com/sindresorhus/ansi-regex/issues"
|
|
},
|
|
"homepage": "https://github.com/sindresorhus/ansi-regex#readme",
|
|
"_id": "ansi-regex@2.0.0",
|
|
"_shasum": "c5061b6e0ef8a81775e50f5d66151bf6bf371107",
|
|
"_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.0.0.tgz",
|
|
"_from": "ansi-regex@2.0.0"
|
|
}
|
|
|