package.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "micromark-extension-gfm-table",
  3. "version": "1.0.5",
  4. "description": "micromark extension to support GFM tables",
  5. "license": "MIT",
  6. "keywords": [
  7. "micromark",
  8. "micromark-extension",
  9. "table",
  10. "row",
  11. "column",
  12. "cell",
  13. "tabular",
  14. "gfm",
  15. "markdown",
  16. "unified"
  17. ],
  18. "repository": "micromark/micromark-extension-gfm-table",
  19. "bugs": "https://github.com/micromark/micromark-extension-gfm-table/issues",
  20. "funding": {
  21. "type": "opencollective",
  22. "url": "https://opencollective.com/unified"
  23. },
  24. "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
  25. "contributors": [
  26. "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
  27. ],
  28. "sideEffects": false,
  29. "type": "module",
  30. "main": "index.js",
  31. "types": "index.d.ts",
  32. "files": [
  33. "dev/",
  34. "lib/",
  35. "index.d.ts",
  36. "index.js"
  37. ],
  38. "exports": {
  39. "development": "./dev/index.js",
  40. "default": "./index.js"
  41. },
  42. "dependencies": {
  43. "micromark-factory-space": "^1.0.0",
  44. "micromark-util-character": "^1.0.0",
  45. "micromark-util-symbol": "^1.0.0",
  46. "micromark-util-types": "^1.0.0",
  47. "uvu": "^0.5.0"
  48. },
  49. "devDependencies": {
  50. "@types/tape": "^4.0.0",
  51. "c8": "^7.0.0",
  52. "create-gfm-fixtures": "^1.0.0",
  53. "micromark": "^3.0.0",
  54. "micromark-build": "^1.0.0",
  55. "rimraf": "^3.0.0",
  56. "tape": "^5.0.0",
  57. "type-coverage": "^2.0.0"
  58. },
  59. "scripts": {
  60. "build": "rimraf \"dev/**/*.d.ts\" \"test/**/*.d.ts\" && tsc && type-coverage && micromark-build",
  61. "clean": "npx -y shx rm -rf lib index.js index.d.ts \"dev/**/*.d.ts\" \"test/**/*.d.ts\"",
  62. "dev": "yarn build",
  63. "test-api": "node --conditions development test/index.js",
  64. "test-coverage": "c8 --check-coverage --branches 99.45 --functions 100 --lines 99.63 --statements 99.63 --reporter lcov node --conditions development test/index.js",
  65. "test": "npm run build && npm run test-coverage",
  66. "lint": "yarn eslint \"**/*.{cjs, js,jsx,ts,tsx}\"",
  67. "lint:fix": "yarn eslint \"**/*.{cjs, js,jsx,ts,tsx}\" --fix"
  68. },
  69. "typeCoverage": {
  70. "atLeast": 94.42,
  71. "detail": true,
  72. "strict": true,
  73. "ignoreCatch": true
  74. }
  75. }