UNPKG

markdown-table-formatter

Version:
78 lines (77 loc) 1.76 kB
{ "name": "markdown-table-formatter", "version": "1.6.1", "description": "Format markdown tables in files", "main": "./lib/index.js", "files": [ "lib/" ], "bin": { "markdown-table-formatter": "lib/index.js" }, "scripts": { "lint:fix": "eslint **/*.js --fix && prettier --write \"./lib/**/*.{js,jsx,json}\" --tab-width 4 --print-width 150", "test": "mocha \"test/**/*.test.js\"", "test:coverage": "nyc npm run test", "test:debug": "env DEBUG=markdown-table-formatter mocha --reporter spec \"test/**/*.test.js\"" }, "repository": { "type": "git", "url": "git+https://github.com/nvuillam/markdown-table-formatter.git" }, "keywords": [ "markdown", "table", "formatter", "format", "prettify" ], "author": "Nicolas Vuillamy", "license": "MIT", "bugs": { "url": "https://github.com/nvuillam/markdown-table-formatter/issues" }, "homepage": "https://github.com/nvuillam/markdown-table-formatter#readme", "dependencies": { "debug": "^4.3.4", "find-package-json": "^1.2.0", "fs-extra": "^11.1.1", "glob": "^10.3.14", "markdown-table-prettify": "^3.6.0", "optionator": "^0.9.4" }, "devDependencies": { "@babel/eslint-parser": "^7.23.3", "eslint": "^9.0.0", "mega-linter-runner": "^7.6.0", "mocha": "^10.2.0", "nyc": "^15.1.0", "which": "^4.0.0" }, "engines": { "node": ">=18.0.0" }, "mocha": { "require": [ "test/helpers/init.js" ], "watch-extensions": [ "js" ], "recursive": true, "reporter": "spec", "timeout": "300000" }, "nyc": { "include": [ "lib/**" ], "extension": [ ".js" ], "reporter": [ "html" ], "all": true } }