blob: 3cad8e04681445d2cad430587bd44df3139b0331 [file] [log] [blame]
{
"author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
"bugs": "https://github.com/wooorm/markdown-table/issues",
"contributors": [
"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
],
"dependencies": {
"repeat-string": "^1.0.0"
},
"description": "Markdown tables",
"devDependencies": {
"browserify": "^16.0.0",
"chalk": "^3.0.0",
"nyc": "^15.0.0",
"prettier": "^1.0.0",
"remark-cli": "^7.0.0",
"remark-preset-wooorm": "^6.0.0",
"strip-ansi": "^6.0.0",
"tape": "^4.0.0",
"tinyify": "^2.0.0",
"xo": "^0.25.0"
},
"files": [
"index.js"
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
},
"keywords": [
"text",
"markdown",
"table",
"align",
"rows",
"tabular"
],
"license": "MIT",
"name": "markdown-table",
"nyc": {
"branches": 100,
"check-coverage": true,
"functions": 100,
"lines": 100
},
"prettier": {
"bracketSpacing": false,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false
},
"remarkConfig": {
"plugins": [
"preset-wooorm"
]
},
"repository": "wooorm/markdown-table",
"scripts": {
"build": "npm run build-bundle && npm run build-mangle",
"build-bundle": "browserify . -s markdownTable -o markdown-table.js",
"build-mangle": "browserify . -s markdownTable -p tinyify -o markdown-table.min.js",
"format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
"test": "npm run format && npm run build && npm run test-coverage",
"test-api": "node test",
"test-coverage": "nyc --reporter lcov tape test.js"
},
"version": "2.0.0",
"xo": {
"esnext": false,
"ignores": [
"markdown-table.js"
],
"prettier": true,
"rules": {
"complexity": "off"
}
}
}