package.json 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. {
  2. "_from": "mdast-util-from-markdown@^0.8.0",
  3. "_id": "mdast-util-from-markdown@0.8.5",
  4. "_inBundle": false,
  5. "_integrity": "sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==",
  6. "_location": "/mdast-util-from-markdown",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "mdast-util-from-markdown@^0.8.0",
  12. "name": "mdast-util-from-markdown",
  13. "escapedName": "mdast-util-from-markdown",
  14. "rawSpec": "^0.8.0",
  15. "saveSpec": null,
  16. "fetchSpec": "^0.8.0"
  17. },
  18. "_requiredBy": [
  19. "/remark-parse"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-0.8.5.tgz",
  22. "_shasum": "d1ef2ca42bc377ecb0463a987910dae89bd9a28c",
  23. "_spec": "mdast-util-from-markdown@^0.8.0",
  24. "_where": "D:\\qianger\\7\\jindouyunNewFront\\node_modules\\remark-parse",
  25. "author": {
  26. "name": "Titus Wormer",
  27. "email": "tituswormer@gmail.com",
  28. "url": "https://wooorm.com"
  29. },
  30. "bugs": {
  31. "url": "https://github.com/syntax-tree/mdast-util-from-markdown/issues"
  32. },
  33. "bundleDependencies": false,
  34. "contributors": [
  35. {
  36. "name": "Titus Wormer",
  37. "email": "tituswormer@gmail.com",
  38. "url": "https://wooorm.com"
  39. }
  40. ],
  41. "dependencies": {
  42. "@types/mdast": "^3.0.0",
  43. "mdast-util-to-string": "^2.0.0",
  44. "micromark": "~2.11.0",
  45. "parse-entities": "^2.0.0",
  46. "unist-util-stringify-position": "^2.0.0"
  47. },
  48. "deprecated": false,
  49. "description": "mdast utility to parse markdown",
  50. "devDependencies": {
  51. "@babel/cli": "^7.0.0",
  52. "@babel/core": "^7.0.0",
  53. "babel-plugin-inline-constants": "^1.0.0",
  54. "browserify": "^17.0.0",
  55. "commonmark.json": "^0.29.0",
  56. "dtslint": "^4.0.0",
  57. "gzip-size-cli": "^4.0.0",
  58. "hast-util-to-html": "^7.0.0",
  59. "mdast-util-to-hast": "^10.0.0",
  60. "nyc": "^15.0.0",
  61. "prettier": "^2.0.0",
  62. "rehype-parse": "^7.0.0",
  63. "rehype-stringify": "^8.0.0",
  64. "remark-cli": "^9.0.0",
  65. "remark-preset-wooorm": "^8.0.0",
  66. "tape": "^5.0.0",
  67. "tinyify": "^3.0.0",
  68. "unified": "^9.0.0",
  69. "xo": "^0.37.0"
  70. },
  71. "files": [
  72. "dist/",
  73. "lib/",
  74. "index.js",
  75. "types/index.d.ts"
  76. ],
  77. "funding": {
  78. "type": "opencollective",
  79. "url": "https://opencollective.com/unified"
  80. },
  81. "homepage": "https://github.com/syntax-tree/mdast-util-from-markdown#readme",
  82. "keywords": [
  83. "unist",
  84. "mdast",
  85. "mdast-util",
  86. "util",
  87. "utility",
  88. "markdown",
  89. "markup",
  90. "parse",
  91. "syntax",
  92. "tree",
  93. "ast"
  94. ],
  95. "license": "MIT",
  96. "name": "mdast-util-from-markdown",
  97. "nyc": {
  98. "check-coverage": true,
  99. "lines": 100,
  100. "functions": 100,
  101. "branches": 100
  102. },
  103. "prettier": {
  104. "tabWidth": 2,
  105. "useTabs": false,
  106. "singleQuote": true,
  107. "bracketSpacing": false,
  108. "semi": false,
  109. "trailingComma": "none"
  110. },
  111. "remarkConfig": {
  112. "plugins": [
  113. "preset-wooorm"
  114. ]
  115. },
  116. "repository": {
  117. "type": "git",
  118. "url": "git+https://github.com/syntax-tree/mdast-util-from-markdown.git"
  119. },
  120. "scripts": {
  121. "format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
  122. "generate": "npm run generate-dist && npm run generate-size",
  123. "generate-dist": "babel lib/ --out-dir dist/ --quiet --retain-lines; prettier dist/ --loglevel error --write",
  124. "generate-size": "browserify . -p tinyify -s mdast-util-from-markdown -o mdast-util-from-markdown.min.js; gzip-size mdast-util-from-markdown.min.js --raw",
  125. "test": "npm run format && npm run generate && npm run test-coverage && npm run test-types",
  126. "test-api": "node test",
  127. "test-coverage": "nyc --reporter lcov tape test/index.js",
  128. "test-types": "dtslint types"
  129. },
  130. "types": "types",
  131. "version": "0.8.5",
  132. "xo": {
  133. "prettier": true,
  134. "esnext": false,
  135. "rules": {
  136. "complexity": "off",
  137. "guard-for-in": "off",
  138. "unicorn/explicit-length-check": "off",
  139. "unicorn/no-array-callback-reference": "off",
  140. "unicorn/prefer-includes": "off",
  141. "unicorn/prefer-number-properties": "off",
  142. "unicorn/prefer-optional-catch-binding": "off"
  143. },
  144. "ignores": [
  145. "types/"
  146. ]
  147. }
  148. }