UNPKG

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