package.json 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. {
  2. "_from": "unist-util-find-all-after@^3.0.2",
  3. "_id": "unist-util-find-all-after@3.0.2",
  4. "_inBundle": false,
  5. "_integrity": "sha512-xaTC/AGZ0rIM2gM28YVRAFPIZpzbpDtU3dRmp7EXlNVA8ziQc4hY3H7BHXM1J49nEmiqc3svnqMReW+PGqbZKQ==",
  6. "_location": "/unist-util-find-all-after",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "unist-util-find-all-after@^3.0.2",
  12. "name": "unist-util-find-all-after",
  13. "escapedName": "unist-util-find-all-after",
  14. "rawSpec": "^3.0.2",
  15. "saveSpec": null,
  16. "fetchSpec": "^3.0.2"
  17. },
  18. "_requiredBy": [
  19. "/@stylelint/postcss-markdown"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/unist-util-find-all-after/-/unist-util-find-all-after-3.0.2.tgz",
  22. "_shasum": "fdfecd14c5b7aea5e9ef38d5e0d5f774eeb561f6",
  23. "_spec": "unist-util-find-all-after@^3.0.2",
  24. "_where": "D:\\qianger\\7\\jindouyunNewFront\\node_modules\\@stylelint\\postcss-markdown",
  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/unist-util-find-all-after/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. "name": "Lucas Brandstaetter",
  42. "email": "lucas@brandstaetter.tech",
  43. "url": "https://github.com/Roang-zero1"
  44. }
  45. ],
  46. "dependencies": {
  47. "unist-util-is": "^4.0.0"
  48. },
  49. "deprecated": false,
  50. "description": "unist utility to find nodes after another node",
  51. "devDependencies": {
  52. "@types/tape": "^4.0.0",
  53. "browserify": "^17.0.0",
  54. "dtslint": "^4.0.0",
  55. "nyc": "^15.0.0",
  56. "prettier": "^2.0.0",
  57. "remark": "^13.0.0",
  58. "remark-cli": "^9.0.0",
  59. "remark-preset-wooorm": "^8.0.0",
  60. "tape": "^5.0.0",
  61. "tinyify": "^3.0.0",
  62. "typescript": "^4.0.0",
  63. "xo": "^0.34.0"
  64. },
  65. "files": [
  66. "index.js",
  67. "index.d.ts"
  68. ],
  69. "funding": {
  70. "type": "opencollective",
  71. "url": "https://opencollective.com/unified"
  72. },
  73. "homepage": "https://github.com/syntax-tree/unist-util-find-all-after#readme",
  74. "keywords": [
  75. "unist",
  76. "unist-util",
  77. "util",
  78. "utility",
  79. "tree",
  80. "node",
  81. "find",
  82. "after"
  83. ],
  84. "license": "MIT",
  85. "name": "unist-util-find-all-after",
  86. "nyc": {
  87. "check-coverage": true,
  88. "lines": 100,
  89. "functions": 100,
  90. "branches": 100
  91. },
  92. "prettier": {
  93. "tabWidth": 2,
  94. "useTabs": false,
  95. "singleQuote": true,
  96. "bracketSpacing": false,
  97. "semi": false,
  98. "trailingComma": "none"
  99. },
  100. "remarkConfig": {
  101. "plugins": [
  102. "preset-wooorm"
  103. ]
  104. },
  105. "repository": {
  106. "type": "git",
  107. "url": "git+https://github.com/syntax-tree/unist-util-find-all-after.git"
  108. },
  109. "scripts": {
  110. "build": "npm run build-bundle && npm run build-mangle",
  111. "build-bundle": "browserify . -s unistUtilFindAllAfter -o unist-util-find-all-after.js",
  112. "build-mangle": "browserify . -s unistUtilFindAllAfter -p tinyify -o unist-util-find-all-after.min.js",
  113. "format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
  114. "test": "npm run format && npm run build && npm run test-coverage && npm run test-types",
  115. "test-api": "node test",
  116. "test-coverage": "nyc --reporter lcov tape test.js",
  117. "test-types": "dtslint ."
  118. },
  119. "types": "index.d.ts",
  120. "version": "3.0.2",
  121. "xo": {
  122. "prettier": true,
  123. "esnext": false,
  124. "rules": {
  125. "eqeqeq": [
  126. "error",
  127. "always",
  128. {
  129. "null": "ignore"
  130. }
  131. ],
  132. "guard-for-in": "off",
  133. "no-eq-null": "off"
  134. },
  135. "ignore": [
  136. "unist-util-find-all-after.js",
  137. "*.ts"
  138. ]
  139. }
  140. }