-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "cli-format",
"version": "3.0.9",
"description": "A command line formatting utility that makes it easy to manage word wrapping, indents, padding, columns, and more. Also works with ansi-encoding libraries chalk, colors, and others.",
"main": "bin/index.js",
"directories": {
"test": "tests"
},
"dependencies": {
"string-width": "^1.0.1"
},
"devDependencies": {
"chai": "^3.5.0",
"chalk": "^1.1.1",
"colors": "^1.1.2",
"coveralls": "^2.11.14",
"mocha": "^3.1.2",
"nyc": "^8.4.0",
"tape": "^4.2.2"
},
"scripts": {
"test": "nyc mocha tests/*.js && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gi60s/cli-format.git"
},
"keywords": [
"ansi",
"cli",
"command line",
"columns",
"format",
"formatting",
"word",
"wrap"
],
"author": "James Speirs <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Gi60s/cli-format/issues"
},
"homepage": "https://github.com/Gi60s/cli-format#readme"
}