UNPKG

asciitable.js

Version:

Generate a ASCII Table from a bidimensional array of strings

85 lines (84 loc) 2.23 kB
{ "name": "asciitable.js", "nameFull": "asciitable", "version": "2.0.1", "description": "Generate a ASCII Table from a bidimensional array of strings", "license": "MIT", "engines": { "node": ">=6" }, "repository": { "type": "git", "url": "git+https://github.com/victornpb/asciitable.js.git" }, "bugs": { "url": "https://github.com/victornpb/asciitable.js/issues" }, "homepage": "https://github.com/victornpb/asciitable.js#readme", "author": "victornpb", "main": "dist/asciitable.cjs.js", "module": "dist/asciitable.esm.js", "unpkg": "dist/asciitable.js", "globalVar": "asciitable", "types": "dist/asciitable.d.ts", "scripts": { "start": "npm run watch", "build": "rollup -c", "watch": "rollup -c -w", "prebuild": "rimraf dist", "test": "npm run lint", "lint": "eslint src", "lint:fix": "eslint src --fix", "version": "npm i --package-lock-only && npm run build && git add --all", "release": "np --any-branch" }, "files": [ "dist" ], "keywords": [ "markdown", "GitHub Tables", "ASCII", "Table", "Array", "Matrix", "Strings" ], "sideEffects": false, "devDependencies": { "@babel/core": "^7.17.9", "@babel/plugin-proposal-class-properties": "^7.16.7", "@babel/plugin-proposal-private-methods": "^7.16.11", "@babel/plugin-syntax-optional-chaining": "^7.8.3", "@babel/plugin-transform-object-assign": "^7.16.7", "@babel/plugin-transform-runtime": "^7.17.0", "@babel/polyfill": "^7.12.1", "@babel/preset-env": "^7.16.11", "eslint": "^8.13.0", "husky": "^8.0.1", "lint-staged": "^12.4.0", "np": "^7.6.1", "postcss": "^8.4.12", "rimraf": "^3.0.2", "rollup": "^2.70.2", "rollup-plugin-babel": "^4.4.0", "rollup-plugin-banner2": "^1.2.2", "rollup-plugin-commonjs": "^10.1.0", "rollup-plugin-dts": "^4.2.1", "rollup-plugin-node-resolve": "^5.2.0", "rollup-plugin-postcss": "^4.0.2", "rollup-plugin-terser": "^7.0.2", "tiny-dedent": "^1.0.2" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "src/**/*.js": [ "npm run lint:fix", "git add" ] } }