|
| 1 | +{ |
| 2 | + "name": "mdast-util-mdx-expression", |
| 3 | + "version": "0.0.0", |
| 4 | + "description": "mdast extension to parse and serialize MDX or MDX.js expressions", |
| 5 | + "license": "MIT", |
| 6 | + "keywords": [ |
| 7 | + "unist", |
| 8 | + "mdast", |
| 9 | + "mdast-util", |
| 10 | + "util", |
| 11 | + "utility", |
| 12 | + "markdown", |
| 13 | + "markup", |
| 14 | + "mdx", |
| 15 | + "mdxjs", |
| 16 | + "expression", |
| 17 | + "extension" |
| 18 | + ], |
| 19 | + "repository": "syntax-tree/mdast-util-mdx-expression", |
| 20 | + "bugs": "https://github.com/syntax-tree/mdast-util-mdx-expression/issues", |
| 21 | + "funding": { |
| 22 | + "type": "opencollective", |
| 23 | + "url": "https://opencollective.com/unified" |
| 24 | + }, |
| 25 | + "author": "Titus Wormer <[email protected]> (https://wooorm.com)", |
| 26 | + "contributors": [ |
| 27 | + "Titus Wormer <[email protected]> (https://wooorm.com)" |
| 28 | + ], |
| 29 | + "files": [ |
| 30 | + "from-markdown.js", |
| 31 | + "index.js", |
| 32 | + "to-markdown.js" |
| 33 | + ], |
| 34 | + "dependencies": { |
| 35 | + "strip-indent": "^3.0.0" |
| 36 | + }, |
| 37 | + "devDependencies": { |
| 38 | + "acorn": "^8.0.0", |
| 39 | + "mdast-util-from-markdown": "^0.8.0", |
| 40 | + "mdast-util-to-markdown": "^0.5.0", |
| 41 | + "micromark-extension-mdx-expression": "^0.1.0", |
| 42 | + "nyc": "^15.0.0", |
| 43 | + "prettier": "^2.0.0", |
| 44 | + "remark-cli": "^9.0.0", |
| 45 | + "remark-preset-wooorm": "^8.0.0", |
| 46 | + "tape": "^5.0.0", |
| 47 | + "unist-util-remove-position": "^3.0.0", |
| 48 | + "xo": "^0.35.0" |
| 49 | + }, |
| 50 | + "scripts": { |
| 51 | + "format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix", |
| 52 | + "test-api": "node test", |
| 53 | + "test-coverage": "nyc --reporter lcov tape test.js", |
| 54 | + "test": "npm run format && npm run test-coverage" |
| 55 | + }, |
| 56 | + "nyc": { |
| 57 | + "check-coverage": true, |
| 58 | + "lines": 100, |
| 59 | + "functions": 100, |
| 60 | + "branches": 100 |
| 61 | + }, |
| 62 | + "prettier": { |
| 63 | + "tabWidth": 2, |
| 64 | + "useTabs": false, |
| 65 | + "singleQuote": true, |
| 66 | + "bracketSpacing": false, |
| 67 | + "semi": false, |
| 68 | + "trailingComma": "none" |
| 69 | + }, |
| 70 | + "xo": { |
| 71 | + "prettier": true, |
| 72 | + "esnext": false |
| 73 | + }, |
| 74 | + "remarkConfig": { |
| 75 | + "plugins": [ |
| 76 | + "preset-wooorm" |
| 77 | + ] |
| 78 | + } |
| 79 | +} |
0 commit comments