CoolFace
Datasetpublic

basant307/AI_Governance_Project

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