CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
package.json126 linesDownload Raw Back to mdast-util-gfm
1{2  "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",3  "bugs": "https://github.com/syntax-tree/mdast-util-gfm/issues",4  "contributors": [5    "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"6  ],7  "dependencies": {8    "mdast-util-from-markdown": "^2.0.0",9    "mdast-util-gfm-autolink-literal": "^2.0.0",10    "mdast-util-gfm-footnote": "^2.0.0",11    "mdast-util-gfm-strikethrough": "^2.0.0",12    "mdast-util-gfm-table": "^2.0.0",13    "mdast-util-gfm-task-list-item": "^2.0.0",14    "mdast-util-to-markdown": "^2.0.0"15  },16  "description": "mdast extension to parse and serialize GFM (GitHub Flavored Markdown)",17  "devDependencies": {18    "@types/node": "^22.0.0",19    "c8": "^10.0.0",20    "github-slugger": "^2.0.0",21    "hast-util-to-html": "^9.0.0",22    "mdast-util-to-hast": "^13.0.0",23    "micromark-extension-gfm": "^3.0.0",24    "prettier": "^3.0.0",25    "remark-cli": "^12.0.0",26    "remark-preset-wooorm": "^11.0.0",27    "type-coverage": "^2.0.0",28    "typescript": "^5.0.0",29    "undici": "^7.0.0",30    "xo": "^0.60.0"31  },32  "exports": "./index.js",33  "files": [34    "index.d.ts",35    "index.js",36    "lib/"37  ],38  "funding": {39    "type": "opencollective",40    "url": "https://opencollective.com/unified"41  },42  "keywords": [43    "autolink",44    "gfm",45    "github",46    "markdown",47    "markup",48    "mdast-util",49    "mdast",50    "strikethrough",51    "table",52    "tagfilter",53    "tasklist",54    "unist",55    "utility",56    "util"57  ],58  "license": "MIT",59  "name": "mdast-util-gfm",60  "prettier": {61    "bracketSpacing": false,62    "semi": false,63    "singleQuote": true,64    "tabWidth": 2,65    "trailingComma": "none",66    "useTabs": false67  },68  "remarkConfig": {69    "plugins": [70      "remark-preset-wooorm"71    ]72  },73  "repository": "syntax-tree/mdast-util-gfm",74  "scripts": {75    "build": "tsc --build --clean && tsc --build && type-coverage",76    "crawl": "node --conditions development script/crawl-tests.js",77    "format": "remark --frail --output --quiet -- . && prettier --log-level warn --write -- . && xo --fix",78    "test-api-prod": "node --conditions production test/index.js",79    "test-api-dev": "node --conditions development test/index.js",80    "test-api": "npm run test-api-dev && npm run test-api-prod",81    "test-coverage": "c8 --100 --reporter lcov -- npm run test-api",82    "test": "npm run build && npm run format && npm run test-coverage"83  },84  "sideEffects": false,85  "typeCoverage": {86    "atLeast": 100,87    "strict": true88  },89  "type": "module",90  "version": "3.1.0",91  "xo": {92    "overrides": [93      {94        "files": [95          "**/*.d.ts"96        ],97        "rules": {98          "@typescript-eslint/array-type": [99            "error",100            {101              "default": "generic"102            }103          ],104          "@typescript-eslint/ban-types": [105            "error",106            {107              "extendDefaults": true108            }109          ],110          "@typescript-eslint/consistent-type-definitions": [111            "error",112            "interface"113          ]114        }115      },116      {117        "files": "test/**/*.js",118        "rules": {119          "no-await-in-loop": "off"120        }121      }122    ],123    "prettier": true124  }125}126 
basant307/AI_Governance_Project · CoolFace