Files
sgauthier 6e64e138e2
All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
planning
2024-10-14 09:15:30 +02:00

77 lines
1.7 KiB
JSON

{
"name": "micromark-extension-gfm-table",
"version": "0.4.3",
"description": "micromark extension to support GFM tables",
"license": "MIT",
"keywords": [
"micromark",
"micromark-extension",
"table",
"row",
"column",
"cell",
"tabular",
"gfm",
"markdown",
"unified"
],
"repository": "micromark/micromark-extension-gfm-table",
"bugs": "https://github.com/micromark/micromark-extension-gfm-table/issues",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
},
"author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
"contributors": [
"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
],
"files": [
"index.js",
"html.js",
"syntax.js"
],
"dependencies": {
"micromark": "~2.11.0"
},
"devDependencies": {
"nyc": "^15.0.0",
"prettier": "^2.0.0",
"remark-cli": "^9.0.0",
"remark-preset-wooorm": "^8.0.0",
"tape": "^5.0.0",
"xo": "^0.38.0"
},
"scripts": {
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
"test-api": "node test",
"test-coverage": "nyc --reporter lcov tape test/index.js",
"test": "npm run format && npm run test-coverage"
},
"nyc": {
"check-coverage": true,
"lines": 100,
"functions": 100,
"branches": 100
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"bracketSpacing": false,
"semi": false,
"trailingComma": "none"
},
"xo": {
"prettier": true,
"esnext": false,
"rules": {
"complexity": "off"
}
},
"remarkConfig": {
"plugins": [
"preset-wooorm"
]
}
}