forked from sindresorhus/boxen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1006 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@mrtarantula/carden",
"version": "4.0.0",
"description": "Create cards in the terminal",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mrtarantula/carden.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"author": {
"name": "Ryan Tauriainen",
"email": "ryan@ryant.io",
"url": "https://ryant.io"
},
"engines": {
"node": ">=8"
},
"scripts": {
"test": "xo && nyc ava && tsd"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"cli",
"box",
"boxes",
"terminal",
"term",
"console",
"ascii",
"unicode",
"border",
"text",
"card",
"cards",
"boxen"
],
"dependencies": {
"ansi-align": "^3.0.0",
"camelcase": "^5.3.1",
"chalk": "^2.4.2",
"cli-boxes": "^2.2.0",
"string-width": "^4.1.0",
"term-size": "^2.1.0",
"type-fest": "^0.5.2",
"widest-line": "^3.1.0"
},
"devDependencies": {
"ava": "^2.1.0",
"nyc": "^14.1.1",
"tsd": "^0.7.3",
"xo": "^0.24.0"
}
}