-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.17 KB
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
{
"name": "@lvchengbin/cli-table",
"version": "0.0.1",
"description": "Simply to render `Object`s or `Array`s as tables on the command line in node.js scripts.",
"main": "index.js",
"scripts": {
"demo": "nodemon test/demo.js",
"lint": "eslint ./ --cache --ignore-path .eslintignore",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LvChengbin/cli-table.git"
},
"keywords": [
"table",
"format",
"console",
"cli",
"command",
"tty",
"map"
],
"author": "LvChengbin <lvchengbin59@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/LvChengbin/cli-table/issues"
},
"homepage": "https://github.com/LvChengbin/cli-table#readme",
"dependencies": {
"@lvchengbin/is": "0.0.27",
"cli-style": "0.0.3"
},
"devDependencies": {
"eslint": "^7.0.0-alpha.2",
"jasmine": "^3.5.0",
"nodemon": "^2.0.2",
"pre-commit": "^1.2.2",
"random-world": "^1.2.1",
"strip-ansi": "^6.0.0"
}
}