├── .editorconfig ├── .gitattributes ├── .github ├── security.md └── workflows │ └── main.yml ├── .gitignore ├── .npmrc ├── example.js ├── index.d.ts ├── index.js ├── index.test-d.ts ├── license ├── package.json ├── readme.md ├── screenshot.png └── tests ├── background-option.js ├── border-option.js ├── float-option.js ├── fullscreen-option.js ├── height-option.js ├── main.js ├── margin-option.js ├── padding-option.js ├── snapshots └── tests │ ├── background-option.js.md │ ├── background-option.js.snap │ ├── border-option.js.md │ ├── border-option.js.snap │ ├── float-option.js.md │ ├── float-option.js.snap │ ├── fullscreen-option.js.md │ ├── fullscreen-option.js.snap │ ├── height-option.js.md │ ├── height-option.js.snap │ ├── main.js.md │ ├── main.js.snap │ ├── margin-option.js.md │ ├── margin-option.js.snap │ ├── padding-option.js.md │ ├── padding-option.js.snap │ ├── text-align-option.js.md │ ├── text-align-option.js.snap │ ├── title-option.js.md │ ├── title-option.js.snap │ ├── width-option.js.md │ └── width-option.js.snap ├── text-align-option.js ├── title-option.js └── width-option.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/.github/security.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn.lock 3 | .nyc_output 4 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/example.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/index.js -------------------------------------------------------------------------------- /index.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/index.test-d.ts -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/readme.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/screenshot.png -------------------------------------------------------------------------------- /tests/background-option.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/background-option.js -------------------------------------------------------------------------------- /tests/border-option.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/border-option.js -------------------------------------------------------------------------------- /tests/float-option.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/float-option.js -------------------------------------------------------------------------------- /tests/fullscreen-option.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/fullscreen-option.js -------------------------------------------------------------------------------- /tests/height-option.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/height-option.js -------------------------------------------------------------------------------- /tests/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/main.js -------------------------------------------------------------------------------- /tests/margin-option.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/margin-option.js -------------------------------------------------------------------------------- /tests/padding-option.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/padding-option.js -------------------------------------------------------------------------------- /tests/snapshots/tests/background-option.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/snapshots/tests/background-option.js.md -------------------------------------------------------------------------------- /tests/snapshots/tests/background-option.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/snapshots/tests/background-option.js.snap -------------------------------------------------------------------------------- /tests/snapshots/tests/border-option.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/snapshots/tests/border-option.js.md -------------------------------------------------------------------------------- /tests/snapshots/tests/border-option.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/snapshots/tests/border-option.js.snap -------------------------------------------------------------------------------- /tests/snapshots/tests/float-option.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/snapshots/tests/float-option.js.md -------------------------------------------------------------------------------- /tests/snapshots/tests/float-option.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/snapshots/tests/float-option.js.snap -------------------------------------------------------------------------------- /tests/snapshots/tests/fullscreen-option.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/snapshots/tests/fullscreen-option.js.md -------------------------------------------------------------------------------- /tests/snapshots/tests/fullscreen-option.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/snapshots/tests/fullscreen-option.js.snap -------------------------------------------------------------------------------- /tests/snapshots/tests/height-option.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/snapshots/tests/height-option.js.md -------------------------------------------------------------------------------- /tests/snapshots/tests/height-option.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/snapshots/tests/height-option.js.snap -------------------------------------------------------------------------------- /tests/snapshots/tests/main.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/snapshots/tests/main.js.md -------------------------------------------------------------------------------- /tests/snapshots/tests/main.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/snapshots/tests/main.js.snap -------------------------------------------------------------------------------- /tests/snapshots/tests/margin-option.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/snapshots/tests/margin-option.js.md -------------------------------------------------------------------------------- /tests/snapshots/tests/margin-option.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/snapshots/tests/margin-option.js.snap -------------------------------------------------------------------------------- /tests/snapshots/tests/padding-option.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/snapshots/tests/padding-option.js.md -------------------------------------------------------------------------------- /tests/snapshots/tests/padding-option.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/snapshots/tests/padding-option.js.snap -------------------------------------------------------------------------------- /tests/snapshots/tests/text-align-option.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/snapshots/tests/text-align-option.js.md -------------------------------------------------------------------------------- /tests/snapshots/tests/text-align-option.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/snapshots/tests/text-align-option.js.snap -------------------------------------------------------------------------------- /tests/snapshots/tests/title-option.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/snapshots/tests/title-option.js.md -------------------------------------------------------------------------------- /tests/snapshots/tests/title-option.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/snapshots/tests/title-option.js.snap -------------------------------------------------------------------------------- /tests/snapshots/tests/width-option.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/snapshots/tests/width-option.js.md -------------------------------------------------------------------------------- /tests/snapshots/tests/width-option.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/snapshots/tests/width-option.js.snap -------------------------------------------------------------------------------- /tests/text-align-option.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/text-align-option.js -------------------------------------------------------------------------------- /tests/title-option.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/title-option.js -------------------------------------------------------------------------------- /tests/width-option.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/boxen/HEAD/tests/width-option.js --------------------------------------------------------------------------------