|
| 1 | +{ |
| 2 | + "name": "mdast-util-gfm", |
| 3 | + "version": "0.0.0", |
| 4 | + "description": "mdast extension to parse and serialize GFM (gitHub Flavored Markdown)", |
| 5 | + "license": "MIT", |
| 6 | + "keywords": [ |
| 7 | + "unist", |
| 8 | + "mdast", |
| 9 | + "mdast-util", |
| 10 | + "util", |
| 11 | + "utility", |
| 12 | + "markdown", |
| 13 | + "markup", |
| 14 | + "table", |
| 15 | + "strikethrough", |
| 16 | + "tasklist", |
| 17 | + "autolink", |
| 18 | + "tagfilter", |
| 19 | + "github", |
| 20 | + "gfm", |
| 21 | + "gfm" |
| 22 | + ], |
| 23 | + "repository": "syntax-tree/mdast-util-gfm", |
| 24 | + "bugs": "https://github.com/syntax-tree/mdast-util-gfm/issues", |
| 25 | + "funding": { |
| 26 | + "type": "opencollective", |
| 27 | + "url": "https://opencollective.com/unified" |
| 28 | + }, |
| 29 | + "author": "Titus Wormer <[email protected]> (https://wooorm.com)", |
| 30 | + "contributors": [ |
| 31 | + "Titus Wormer <[email protected]> (https://wooorm.com)" |
| 32 | + ], |
| 33 | + "files": [ |
| 34 | + "from-markdown.js", |
| 35 | + "index.js", |
| 36 | + "to-markdown.js" |
| 37 | + ], |
| 38 | + "dependencies": { |
| 39 | + "mdast-util-gfm-autolink-literal": "^0.1.0", |
| 40 | + "mdast-util-gfm-strikethrough": "^0.2.0", |
| 41 | + "mdast-util-gfm-table": "^0.1.0", |
| 42 | + "mdast-util-gfm-task-list-item": "^0.1.0" |
| 43 | + }, |
| 44 | + "devDependencies": { |
| 45 | + "github-slugger": "^1.0.0", |
| 46 | + "hast-util-to-html": "^7.0.0", |
| 47 | + "mdast-util-from-markdown": "^0.5.0", |
| 48 | + "mdast-util-to-hast": "^9.1.2", |
| 49 | + "mdast-util-to-markdown": "^0.3.0", |
| 50 | + "micromark-extension-gfm": "^0.1.0", |
| 51 | + "node-fetch": "^2.6.1", |
| 52 | + "nyc": "^15.0.0", |
| 53 | + "prettier": "^2.0.0", |
| 54 | + "remark-cli": "^8.0.0", |
| 55 | + "remark-preset-wooorm": "^7.0.0", |
| 56 | + "tape": "^5.0.0", |
| 57 | + "xo": "^0.33.0" |
| 58 | + }, |
| 59 | + "scripts": { |
| 60 | + "format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix", |
| 61 | + "crawl": "node script/crawl-tests", |
| 62 | + "test-api": "node test", |
| 63 | + "test-coverage": "nyc --reporter lcov tape test/index.js", |
| 64 | + "test": "npm run format && npm run test-coverage" |
| 65 | + }, |
| 66 | + "nyc": { |
| 67 | + "check-coverage": true, |
| 68 | + "lines": 100, |
| 69 | + "functions": 100, |
| 70 | + "branches": 100 |
| 71 | + }, |
| 72 | + "prettier": { |
| 73 | + "tabWidth": 2, |
| 74 | + "useTabs": false, |
| 75 | + "singleQuote": true, |
| 76 | + "bracketSpacing": false, |
| 77 | + "semi": false, |
| 78 | + "trailingComma": "none" |
| 79 | + }, |
| 80 | + "xo": { |
| 81 | + "prettier": true, |
| 82 | + "esnext": false, |
| 83 | + "rules": { |
| 84 | + "guard-for-in": "off", |
| 85 | + "unicorn/prefer-optional-catch-binding": "off" |
| 86 | + } |
| 87 | + }, |
| 88 | + "remarkConfig": { |
| 89 | + "plugins": [ |
| 90 | + "preset-wooorm" |
| 91 | + ] |
| 92 | + } |
| 93 | +} |
0 commit comments