-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.06 KB
/
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
{
"name": "cli-columns",
"version": "4.0.0",
"description": "Columnated lists for the CLI.",
"scripts": {
"lint": "npx eslint --fix \"*.js\" && npx prettier --write \"*.js\"",
"test": "node test.js && node color.js",
"cover": "npx c8 npm test"
},
"keywords": [
"ansi",
"cli",
"column",
"columnate",
"columns",
"grid",
"list",
"log",
"ls",
"row",
"rows",
"unicode",
"unix"
],
"author": "Shannon Moeller <me@shannonmoeller> (http://shannonmoeller.com)",
"homepage": "https://github.com/shannonmoeller/cli-columns#readme",
"repository": "shannonmoeller/cli-columns",
"license": "MIT",
"main": "index.js",
"files": [
"*.js"
],
"dependencies": {
"string-width": "^4.2.3",
"strip-ansi": "^6.0.1"
},
"devDependencies": {
"chalk": "^4.1.2"
},
"engines": {
"node": ">= 10"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"node": true
},
"parserOptions": {
"ecmaVersion": 8
}
},
"prettier": {
"singleQuote": true
}
}