diff options
author | Minteck <contact@minteck.org> | 2022-06-04 08:51:19 +0200 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-06-04 08:51:19 +0200 |
commit | b22f6770c8bd084d66950655203c61dd701b3d90 (patch) | |
tree | 873d7fb19584ec2709b95cc1ca05a1fc7cfd0fc4 /node_modules/cli-boxes | |
parent | 383285ecd5292bf9a825e05904955b937de84cc9 (diff) | |
download | equestriadb-b22f6770c8bd084d66950655203c61dd701b3d90.tar.gz equestriadb-b22f6770c8bd084d66950655203c61dd701b3d90.tar.bz2 equestriadb-b22f6770c8bd084d66950655203c61dd701b3d90.zip |
Remove node_modules
Diffstat (limited to 'node_modules/cli-boxes')
-rw-r--r-- | node_modules/cli-boxes/boxes.json | 58 | ||||
-rw-r--r-- | node_modules/cli-boxes/index.d.ts | 113 | ||||
-rw-r--r-- | node_modules/cli-boxes/index.js | 6 | ||||
-rw-r--r-- | node_modules/cli-boxes/license | 9 | ||||
-rw-r--r-- | node_modules/cli-boxes/package.json | 42 | ||||
-rw-r--r-- | node_modules/cli-boxes/readme.md | 105 |
6 files changed, 0 insertions, 333 deletions
diff --git a/node_modules/cli-boxes/boxes.json b/node_modules/cli-boxes/boxes.json deleted file mode 100644 index 960d27b..0000000 --- a/node_modules/cli-boxes/boxes.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "single": { - "topLeft": "┌", - "topRight": "┐", - "bottomRight": "┘", - "bottomLeft": "└", - "vertical": "│", - "horizontal": "─" - }, - "double": { - "topLeft": "╔", - "topRight": "╗", - "bottomRight": "╝", - "bottomLeft": "╚", - "vertical": "║", - "horizontal": "═" - }, - "round": { - "topLeft": "╭", - "topRight": "╮", - "bottomRight": "╯", - "bottomLeft": "╰", - "vertical": "│", - "horizontal": "─" - }, - "bold": { - "topLeft": "┏", - "topRight": "┓", - "bottomRight": "┛", - "bottomLeft": "┗", - "vertical": "┃", - "horizontal": "━" - }, - "singleDouble": { - "topLeft": "╓", - "topRight": "╖", - "bottomRight": "╜", - "bottomLeft": "╙", - "vertical": "║", - "horizontal": "─" - }, - "doubleSingle": { - "topLeft": "╒", - "topRight": "╕", - "bottomRight": "╛", - "bottomLeft": "╘", - "vertical": "│", - "horizontal": "═" - }, - "classic": { - "topLeft": "+", - "topRight": "+", - "bottomRight": "+", - "bottomLeft": "+", - "vertical": "|", - "horizontal": "-" - } -} diff --git a/node_modules/cli-boxes/index.d.ts b/node_modules/cli-boxes/index.d.ts deleted file mode 100644 index c96064e..0000000 --- a/node_modules/cli-boxes/index.d.ts +++ /dev/null @@ -1,113 +0,0 @@ -declare namespace cliBoxes { - /** - Style of the box border. - */ - interface BoxStyle { - readonly topLeft: string; - readonly topRight: string; - readonly bottomLeft: string; - readonly bottomRight: string; - readonly horizontal: string; - readonly vertical: string; - } - - /** - All box styles. - */ - interface Boxes { - /** - @example - ``` - ┌────┐ - │ │ - └────┘ - ``` - */ - readonly single: BoxStyle; - - /** - @example - ``` - ╔════╗ - ║ ║ - ╚════╝ - ``` - */ - readonly double: BoxStyle; - - /** - @example - ``` - ╭────╮ - │ │ - ╰────╯ - ``` - */ - readonly round: BoxStyle; - - /** - @example - ``` - ┏━━━━┓ - ┃ ┃ - ┗━━━━┛ - ``` - */ - readonly bold: BoxStyle; - - /** - @example - ``` - ╓────╖ - ║ ║ - ╙────╜ - ``` - */ - readonly singleDouble: BoxStyle; - - /** - @example - ``` - ╒════╕ - │ │ - ╘════╛ - ``` - */ - readonly doubleSingle: BoxStyle; - - /** - @example - ``` - +----+ - | | - +----+ - ``` - */ - readonly classic: BoxStyle; - } -} - -/** -Boxes for use in the terminal. - -@example -``` -import cliBoxes = require('cli-boxes'); - -console.log(cliBoxes.single); -// { -// topLeft: '┌', -// topRight: '┐', -// bottomRight: '┘', -// bottomLeft: '└', -// vertical: '│', -// horizontal: '─' -// } -``` -*/ -declare const cliBoxes: cliBoxes.Boxes & { - // TODO: Remove this for the next major release - default: typeof cliBoxes; -}; - -export = cliBoxes; diff --git a/node_modules/cli-boxes/index.js b/node_modules/cli-boxes/index.js deleted file mode 100644 index fc8a30f..0000000 --- a/node_modules/cli-boxes/index.js +++ /dev/null @@ -1,6 +0,0 @@ -'use strict'; -const cliBoxes = require('./boxes.json'); - -module.exports = cliBoxes; -// TODO: Remove this for the next major release -module.exports.default = cliBoxes; diff --git a/node_modules/cli-boxes/license b/node_modules/cli-boxes/license deleted file mode 100644 index fa7ceba..0000000 --- a/node_modules/cli-boxes/license +++ /dev/null @@ -1,9 +0,0 @@ -MIT License - -Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com) - -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/cli-boxes/package.json b/node_modules/cli-boxes/package.json deleted file mode 100644 index 48e19f2..0000000 --- a/node_modules/cli-boxes/package.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "name": "cli-boxes", - "version": "2.2.1", - "description": "Boxes for use in the terminal", - "license": "MIT", - "repository": "sindresorhus/cli-boxes", - "funding": "https://github.com/sponsors/sindresorhus", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "https://sindresorhus.com" - }, - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "xo && ava && tsd" - }, - "files": [ - "index.js", - "index.d.ts", - "boxes.json" - ], - "keywords": [ - "cli", - "box", - "boxes", - "terminal", - "term", - "console", - "ascii", - "unicode", - "border", - "text", - "json" - ], - "devDependencies": { - "ava": "^1.4.1", - "tsd": "^0.7.2", - "xo": "^0.24.0" - } -} diff --git a/node_modules/cli-boxes/readme.md b/node_modules/cli-boxes/readme.md deleted file mode 100644 index 16632a1..0000000 --- a/node_modules/cli-boxes/readme.md +++ /dev/null @@ -1,105 +0,0 @@ -# cli-boxes [![Build Status](https://travis-ci.com/sindresorhus/cli-boxes.svg?branch=master)](https://travis-ci.com/github/sindresorhus/cli-boxes) - -> Boxes for use in the terminal - -The list of boxes is just a [JSON file](boxes.json) and can be used anywhere. - -## Install - -``` -$ npm install cli-boxes -``` - -## Usage - -```js -const cliBoxes = require('cli-boxes'); - -console.log(cliBoxes.single); -/* -{ - topLeft: '┌', - topRight: '┐', - bottomRight: '┘', - bottomLeft: '└', - vertical: '│', - horizontal: '─' -} -*/ -``` - -## API - -### cliBoxes - -#### `single` - -``` -┌────┐ -│ │ -└────┘ -``` - -#### `double` - -``` -╔════╗ -║ ║ -╚════╝ -``` - -#### `round` - -``` -╭────╮ -│ │ -╰────╯ -``` - -#### `bold` - -``` -┏━━━━┓ -┃ ┃ -┗━━━━┛ -``` - -#### `singleDouble` - -``` -╓────╖ -║ ║ -╙────╜ -``` - -#### `doubleSingle` - -``` -╒════╕ -│ │ -╘════╛ -``` - -#### `classic` - -``` -+----+ -| | -+----+ -``` - -## Related - -- [boxen](https://github.com/sindresorhus/boxen) - Create boxes in the terminal - ---- - -<div align="center"> - <b> - <a href="https://tidelift.com/subscription/pkg/npm-cli-boxes?utm_source=npm-cli-boxes&utm_medium=referral&utm_campaign=readme">Get professional support for this package with a Tidelift subscription</a> - </b> - <br> - <sub> - Tidelift helps make open source sustainable for maintainers while giving companies<br>assurances about security, maintenance, and licensing for their dependencies. - </sub> -</div> |