Projekt

Obecné

Profil

Stáhnout (1.23 KB) Statistiky
| Větev: | Revize:
1
{
2
  "name": "cliui",
3
  "version": "4.1.0",
4
  "description": "easily create complex multi-column command-line-interfaces",
5
  "main": "index.js",
6
  "scripts": {
7
    "pretest": "standard",
8
    "test": "nyc mocha",
9
    "coverage": "nyc --reporter=text-lcov mocha | coveralls",
10
    "release": "standard-version"
11
  },
12
  "repository": {
13
    "type": "git",
14
    "url": "http://github.com/yargs/cliui.git"
15
  },
16
  "config": {
17
    "blanket": {
18
      "pattern": [
19
        "index.js"
20
      ],
21
      "data-cover-never": [
22
        "node_modules",
23
        "test"
24
      ],
25
      "output-reporter": "spec"
26
    }
27
  },
28
  "standard": {
29
    "ignore": [
30
      "**/example/**"
31
    ],
32
    "globals": [
33
      "it"
34
    ]
35
  },
36
  "keywords": [
37
    "cli",
38
    "command-line",
39
    "layout",
40
    "design",
41
    "console",
42
    "wrap",
43
    "table"
44
  ],
45
  "author": "Ben Coe <ben@npmjs.com>",
46
  "license": "ISC",
47
  "dependencies": {
48
    "string-width": "^2.1.1",
49
    "strip-ansi": "^4.0.0",
50
    "wrap-ansi": "^2.0.0"
51
  },
52
  "devDependencies": {
53
    "chai": "^3.5.0",
54
    "chalk": "^1.1.2",
55
    "coveralls": "^2.11.8",
56
    "mocha": "^3.0.0",
57
    "nyc": "^10.0.0",
58
    "standard": "^8.0.0",
59
    "standard-version": "^3.0.0"
60
  },
61
  "files": [
62
    "index.js"
63
  ],
64
  "engine": {
65
    "node": ">=4"
66
  }
67
}
(4-4/4)