UNPKG

2.17 kBJSONView Raw
1{
2 "name": "tty-table",
3 "version": "2.8.13",
4 "description": "Node cli table",
5 "main": "src/main.js",
6 "engines": {
7 "node": ">=8.16.0"
8 },
9 "bin": {
10 "tty-table": "adapters/terminal-adapter.js"
11 },
12 "files": [
13 "adapters/",
14 "src/",
15 "LICENSE"
16 ],
17 "preferGlobal": false,
18 "scripts": {
19 "dist": "npx grunt browserify && npx rollup -c",
20 "coverage": "npx nyc mocha",
21 "test": "npx mocha",
22 "save-tests": "npx grunt st",
23 "lint": "npx eslint adapters/* src/*",
24 "lint-fix": "npx eslint adapters/* src/* --fix",
25 "lint-examples": "npx eslint examples/",
26 "lint-examples-fix": "npx eslint examples/ --fix",
27 "prepublishOnly": "npm run dist",
28 "tags": "npx grunt tags",
29 "watch-tags": "npx grunt watch"
30 },
31 "repository": {
32 "type": "git",
33 "url": "https://github.com/tecfu/tty-table.git"
34 },
35 "keywords": [
36 "table",
37 "table in bash",
38 "cli-table",
39 "terminal table",
40 "console table",
41 "cli table",
42 "console.table",
43 "ascii table"
44 ],
45 "author": "Tecfu",
46 "license": "MIT",
47 "bugs": {
48 "url": "https://github.com/tecfu/tty-table/issues"
49 },
50 "homepage": "https://github.com/tecfu/tty-table",
51 "dependencies": {
52 "chalk": "^3.0.0",
53 "csv": "^5.3.1",
54 "smartwrap": "^1.2.3",
55 "strip-ansi": "^6.0.0",
56 "wcwidth": "^1.0.1",
57 "yargs": "^15.1.0"
58 },
59 "devDependencies": {
60 "@rollup/plugin-commonjs": "^11.0.2",
61 "@rollup/plugin-node-resolve": "^7.1.1",
62 "@rollup/plugin-replace": "^2.3.1",
63 "babel-core": "^6.26.3",
64 "babel-preset-babili": "0.1.4",
65 "babel-preset-es2015": "^6.24.1",
66 "babelify": "^8.0.0",
67 "browserify": "^16.5.0",
68 "browserify-banner": "^1.0.14",
69 "chai": "^4.2.0",
70 "commander": "^4.1.1",
71 "doctoc": "^1.4.0",
72 "eslint": "^6.8.0",
73 "glob": "^7.1.4",
74 "grunt": "^1.0.4",
75 "grunt-cli": "^1.3.2",
76 "grunt-contrib-uglify": "^4.0.1",
77 "grunt-contrib-watch": "^1.1.0",
78 "grunt-jsdoc": "^2.4.0",
79 "grunt-shell": "^3.0.1",
80 "husky": "^4.2.1",
81 "jsdoc-to-markdown": "^5.0.0",
82 "mocha": "^6.1.4",
83 "nyc": "^15.0.0",
84 "orgy": "^2.2.1",
85 "rollup": "^1.31.1"
86 }
87}