• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  "name": "cli-columns",
3  "version": "4.0.0",
4  "description": "Columnated lists for the CLI.",
5  "scripts": {
6    "lint": "npx eslint --fix '*.js' && npx prettier --write '*.js'",
7    "test": "node test.js && node color.js"
8  },
9  "keywords": [
10    "ansi",
11    "cli",
12    "column",
13    "columnate",
14    "columns",
15    "grid",
16    "list",
17    "log",
18    "ls",
19    "row",
20    "rows",
21    "unicode",
22    "unix"
23  ],
24  "author": "Shannon Moeller <me@shannonmoeller> (http://shannonmoeller.com)",
25  "homepage": "https://github.com/shannonmoeller/cli-columns#readme",
26  "repository": "shannonmoeller/cli-columns",
27  "license": "MIT",
28  "main": "index.js",
29  "files": [
30    "*.js"
31  ],
32  "dependencies": {
33    "string-width": "^4.2.3",
34    "strip-ansi": "^6.0.1"
35  },
36  "devDependencies": {
37    "chalk": "^4.1.2"
38  },
39  "engines": {
40    "node": ">= 10"
41  },
42  "eslintConfig": {
43    "extends": "eslint:recommended",
44    "env": {
45      "node": true
46    },
47    "parserOptions": {
48      "ecmaVersion": 8
49    }
50  },
51  "prettier": {
52    "singleQuote": true
53  }
54}
55