Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGar <gar+gh@danger.computer>2022-04-10 05:28:10 +0300
committerNathan Fritz <fritzy@github.com>2022-04-14 01:01:40 +0300
commit605ccef6916c170f6d0c53775614f8a02682262a (patch)
treecf3fd07c295c0b3fced73bddf81894a7d4ddb4e0 /node_modules
parent0cd852f62e1453e647a2551e98c78ce7e0c8ea03 (diff)
deps: remove ansistyles
chalk is already in use elsewhere and does what we need
Diffstat (limited to 'node_modules')
-rw-r--r--node_modules/ansistyles/LICENSE23
-rw-r--r--node_modules/ansistyles/ansistyles.js38
-rw-r--r--node_modules/ansistyles/package.json23
-rw-r--r--node_modules/ansistyles/test/ansistyles.js15
4 files changed, 0 insertions, 99 deletions
diff --git a/node_modules/ansistyles/LICENSE b/node_modules/ansistyles/LICENSE
deleted file mode 100644
index 41702c504..000000000
--- a/node_modules/ansistyles/LICENSE
+++ /dev/null
@@ -1,23 +0,0 @@
-Copyright 2013 Thorsten Lorenz.
-All rights reserved.
-
-Permission is hereby granted, free of charge, to any person
-obtaining a copy of this software and associated documentation
-files (the "Software"), to deal in the Software without
-restriction, including without limitation the rights to use,
-copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the
-Software is furnished to do so, subject to the following
-conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
-OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
-HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
-OTHER DEALINGS IN THE SOFTWARE.
diff --git a/node_modules/ansistyles/ansistyles.js b/node_modules/ansistyles/ansistyles.js
deleted file mode 100644
index 5b8788c0f..000000000
--- a/node_modules/ansistyles/ansistyles.js
+++ /dev/null
@@ -1,38 +0,0 @@
-'use strict';
-
-/*
- * Info: http://www.termsys.demon.co.uk/vtansi.htm#colors
- * Following caveats
- * bright - brightens the color (bold-blue is same as brigthtBlue)
- * dim - nothing on Mac or Linux
- * italic - nothing on Mac or Linux
- * underline - underlines string
- * blink - nothing on Mac or linux
- * inverse - background becomes foreground and vice versa
- *
- * In summary, the only styles that work are:
- * - bright, underline and inverse
- * - the others are only included for completeness
- */
-
-var styleNums = {
- reset : [0, 22]
- , bright : [1, 22]
- , dim : [2, 22]
- , italic : [3, 23]
- , underline : [4, 24]
- , blink : [5, 25]
- , inverse : [7, 27]
- }
- , styles = {}
- ;
-
-Object.keys(styleNums).forEach(function (k) {
- styles[k] = function (s) {
- var open = styleNums[k][0]
- , close = styleNums[k][1];
- return '\u001b[' + open + 'm' + s + '\u001b[' + close + 'm';
- };
-});
-
-module.exports = styles;
diff --git a/node_modules/ansistyles/package.json b/node_modules/ansistyles/package.json
deleted file mode 100644
index 2fe1f4da4..000000000
--- a/node_modules/ansistyles/package.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "name": "ansistyles",
- "version": "0.1.3",
- "description": "Functions that surround a string with ansistyle codes so it prints in style.",
- "main": "ansistyles.js",
- "scripts": {
- "test": "node test/ansistyles.js"
- },
- "repository": {
- "type": "git",
- "url": "git://github.com/thlorenz/ansistyles.git"
- },
- "keywords": [
- "ansi",
- "style",
- "terminal",
- "console"
- ],
- "author": "Thorsten Lorenz <thlorenz@gmx.de> (thlorenz.com)",
- "license": "MIT",
- "readmeFilename": "README.md",
- "gitHead": "27bf1bc65231bcc7fd109bf13b13601b51f8cd04"
-}
diff --git a/node_modules/ansistyles/test/ansistyles.js b/node_modules/ansistyles/test/ansistyles.js
deleted file mode 100644
index f769bf803..000000000
--- a/node_modules/ansistyles/test/ansistyles.js
+++ /dev/null
@@ -1,15 +0,0 @@
-'use strict';
-/*jshint asi: true */
-var assert = require('assert')
- , styles = require('../')
-
-function inspect(obj, depth) {
- console.log(require('util').inspect(obj, false, depth || 5, true));
-}
-
-assert.equal(styles.reset('reset'), '\u001b[0mreset\u001b[22m', 'reset')
-assert.equal(styles.underline('underlined'), '\u001b[4munderlined\u001b[24m', 'underline')
-assert.equal(styles.bright('bright'), '\u001b[1mbright\u001b[22m', 'bright')
-assert.equal(styles.inverse('inversed'), '\u001b[7minversed\u001b[27m', 'inverse')
-
-console.log('OK');