UNPKG

1.89 kBJSONView Raw
1{
2 "name": "as-table",
3 "version": "1.0.48",
4 "description": "A simple function that print objects / arrays as ASCII tables. Handles ANSI styling and weird 💩 Unicode emoji symbols – they won't break the layout.",
5 "main": "build/as-table.js",
6 "typings": "./as-table.d.ts",
7 "scripts": {
8 "lint": "eslint as-table.js",
9 "lint-test": "eslint test.js",
10 "babel": "babel as-table.js --source-maps inline --out-file ./build/as-table.js",
11 "build": "npm run lint && npm run lint-test && npm run babel",
12 "coveralls": "nyc report --reporter=text-lcov | coveralls",
13 "test": "npm run build && env AS_TABLE_TEST_FILE='./build/as-table' nyc --reporter=html --reporter=text mocha --reporter spec",
14 "autotest": "env AS_TABLE_TEST_FILE='./as-table' mocha --reporter spec --watch"
15 },
16 "repository": {
17 "type": "git",
18 "url": "https://github.com/xpl/as-table.git"
19 },
20 "keywords": [
21 "ASCII",
22 "table",
23 "sheet",
24 "grid",
25 "print",
26 "log",
27 "print table",
28 "object as table",
29 "array as table",
30 "text table",
31 "array table",
32 "object table",
33 "array format",
34 "columns",
35 "as table",
36 "tablefy",
37 "columns",
38 "stringify",
39 "print object",
40 "grid",
41 "tty",
42 "terminal",
43 "console",
44 "text",
45 "layout"
46 ],
47 "author": "Vitaly Gordon <rocket.mind@gmail.com>",
48 "license": "MIT",
49 "bugs": {
50 "url": "https://github.com/xpl/as-table/issues"
51 },
52 "homepage": "https://github.com/xpl/as-table",
53 "devDependencies": {
54 "ansicolor": "^1.1.81",
55 "babel-cli": "^6.26.0",
56 "babel-plugin-transform-es2015-destructuring": "^6.23.0",
57 "babel-plugin-transform-es2015-spread": "^6.22.0",
58 "coveralls": "^3.0.3",
59 "eslint": "^4.19.1",
60 "istanbul": "^0.4.5",
61 "mocha": "^6.0.2",
62 "nyc": "^13.3.0"
63 },
64 "dependencies": {
65 "printable-characters": "^1.0.42"
66 }
67}