CoolFace
Datasetpublic

basant307/AI_Governance_Project

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