CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
package.json102 linesDownload Raw Back to mdast-util-gfm-table
1{2  "name": "mdast-util-gfm-table",3  "version": "2.0.0",4  "description": "mdast extension to parse and serialize GFM tables",5  "license": "MIT",6  "keywords": [7    "unist",8    "mdast",9    "mdast-util",10    "util",11    "utility",12    "markdown",13    "markup",14    "table",15    "row",16    "column",17    "cell",18    "tabular",19    "gfm"20  ],21  "repository": "syntax-tree/mdast-util-gfm-table",22  "bugs": "https://github.com/syntax-tree/mdast-util-gfm-table/issues",23  "funding": {24    "type": "opencollective",25    "url": "https://opencollective.com/unified"26  },27  "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",28  "contributors": [29    "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"30  ],31  "sideEffects": false,32  "type": "module",33  "exports": "./index.js",34  "files": [35    "lib/",36    "index.d.ts",37    "index.js"38  ],39  "dependencies": {40    "@types/mdast": "^4.0.0",41    "devlop": "^1.0.0",42    "markdown-table": "^3.0.0",43    "mdast-util-from-markdown": "^2.0.0",44    "mdast-util-to-markdown": "^2.0.0"45  },46  "devDependencies": {47    "@types/node": "^20.0.0",48    "c8": "^8.0.0",49    "micromark-extension-gfm-table": "^2.0.0",50    "prettier": "^2.0.0",51    "remark-cli": "^11.0.0",52    "remark-preset-wooorm": "^9.0.0",53    "string-width": "^6.0.0",54    "type-coverage": "^2.0.0",55    "typescript": "^5.0.0",56    "unist-util-remove-position": "^5.0.0",57    "xo": "^0.54.0"58  },59  "scripts": {60    "prepack": "npm run build && npm run format",61    "build": "tsc --build --clean && tsc --build && type-coverage",62    "format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",63    "test-api-prod": "node --conditions production test.js",64    "test-api-dev": "node --conditions development test.js",65    "test-api": "npm run test-api-dev && npm run test-api-prod",66    "test-coverage": "c8 --100 --reporter lcov npm run test-api",67    "test": "npm run build && npm run format && npm run test-coverage"68  },69  "prettier": {70    "bracketSpacing": false,71    "semi": false,72    "singleQuote": true,73    "tabWidth": 2,74    "trailingComma": "none",75    "useTabs": false76  },77  "remarkConfig": {78    "plugins": [79      "remark-preset-wooorm"80    ]81  },82  "typeCoverage": {83    "atLeast": 100,84    "detail": true,85    "ignoreCatch": true,86    "strict": true87  },88  "xo": {89    "overrides": [90      {91        "files": [92          "**/*.ts"93        ],94        "rules": {95          "@typescript-eslint/consistent-type-definitions": "off"96        }97      }98    ],99    "prettier": true100  }101}102 
basant307/AI_Governance_Project · CoolFace