Welcome to mirror list, hosted at ThFree Co, Russian Federation.

package.json « cli-columns « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cd1c252cd6865f30c9107261b4dc4b5bd5f5f6f7 (plain)
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
{
  "name": "cli-columns",
  "version": "3.1.2",
  "description": "Columnated lists for the CLI.",
  "scripts": {
    "report": "nyc report -r text-lcov | coveralls",
    "test": "xo && nyc ava"
  },
  "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": "^2.0.0",
    "strip-ansi": "^3.0.1"
  },
  "devDependencies": {
    "ava": "^0.19.1",
    "chalk": "^1.1.3",
    "coveralls": "^2.13.1",
    "nyc": "^11.0.2",
    "xo": "^0.18.2"
  },
  "engines": {
    "node": ">= 4"
  }
}