| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- {
- "name": "micromark-extension-gfm-table",
- "version": "1.0.5",
- "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)"
- ],
- "sideEffects": false,
- "type": "module",
- "main": "index.js",
- "types": "index.d.ts",
- "files": [
- "dev/",
- "lib/",
- "index.d.ts",
- "index.js"
- ],
- "exports": {
- "development": "./dev/index.js",
- "default": "./index.js"
- },
- "dependencies": {
- "micromark-factory-space": "^1.0.0",
- "micromark-util-character": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0",
- "uvu": "^0.5.0"
- },
- "devDependencies": {
- "@types/tape": "^4.0.0",
- "c8": "^7.0.0",
- "create-gfm-fixtures": "^1.0.0",
- "micromark": "^3.0.0",
- "micromark-build": "^1.0.0",
- "rimraf": "^3.0.0",
- "tape": "^5.0.0",
- "type-coverage": "^2.0.0"
- },
- "scripts": {
- "build": "rimraf \"dev/**/*.d.ts\" \"test/**/*.d.ts\" && tsc && type-coverage && micromark-build",
- "clean": "npx -y shx rm -rf lib index.js index.d.ts \"dev/**/*.d.ts\" \"test/**/*.d.ts\"",
- "dev": "yarn build",
- "test-api": "node --conditions development test/index.js",
- "test-coverage": "c8 --check-coverage --branches 99.45 --functions 100 --lines 99.63 --statements 99.63 --reporter lcov node --conditions development test/index.js",
- "test": "npm run build && npm run test-coverage",
- "lint": "yarn eslint \"**/*.{cjs, js,jsx,ts,tsx}\"",
- "lint:fix": "yarn eslint \"**/*.{cjs, js,jsx,ts,tsx}\" --fix"
- },
- "typeCoverage": {
- "atLeast": 94.42,
- "detail": true,
- "strict": true,
- "ignoreCatch": true
- }
- }
|