UNPKG

1.11 kBJSONView Raw
1{
2 "name": "boxen",
3 "version": "6.0.0",
4 "description": "Create boxes in the terminal",
5 "license": "MIT",
6 "repository": "sindresorhus/boxen",
7 "funding": "https://github.com/sponsors/sindresorhus",
8 "author": {
9 "name": "Sindre Sorhus",
10 "email": "sindresorhus@gmail.com",
11 "url": "https://sindresorhus.com"
12 },
13 "type": "module",
14 "exports": "./index.js",
15 "engines": {
16 "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
17 },
18 "scripts": {
19 "test": "xo && nyc ava && tsd"
20 },
21 "files": [
22 "index.js",
23 "index.d.ts"
24 ],
25 "keywords": [
26 "cli",
27 "box",
28 "boxes",
29 "terminal",
30 "term",
31 "console",
32 "ascii",
33 "unicode",
34 "border",
35 "text"
36 ],
37 "dependencies": {
38 "ansi-align": "^3.0.1",
39 "camelcase": "^6.2.0",
40 "chalk": "^4.1.2",
41 "cli-boxes": "^2.2.1",
42 "string-width": "^5.0.1",
43 "type-fest": "^2.3.4",
44 "widest-line": "^4.0.0",
45 "wrap-ansi": "^8.0.1"
46 },
47 "devDependencies": {
48 "ava": "^3.15.0",
49 "nyc": "^15.1.0",
50 "tsd": "^0.17.0",
51 "typescript": "^4.4.3",
52 "xo": "^0.44.0"
53 },
54 "ava": {
55 "snapshotDir": "tests/snapshots",
56 "environmentVariables": {
57 "COLUMNS": "60"
58 }
59 }
60}