package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "@growi/remark-growi-plugin",
  3. "version": "6.0.0-RC.6",
  4. "description": "remark plugin to support GROWI plugin (forked from remark-directive@2.0.1)",
  5. "license": "MIT",
  6. "keywords": [
  7. "unified",
  8. "remark",
  9. "remark-plugin",
  10. "plugin",
  11. "mdast",
  12. "markdown",
  13. "generic"
  14. ],
  15. "type": "module",
  16. "main": "dist/index.js",
  17. "typings": "dist/index.d.ts",
  18. "scripts": {
  19. "build": "yarn tsc && tsc-alias -p tsconfig.build.json",
  20. "clean": "npx -y shx rm -rf dist",
  21. "tsc": "tsc -p tsconfig.build.json",
  22. "tsc:w": "yarn tsc -w",
  23. "test": "cross-env NODE_ENV=test npm run test-coverage",
  24. "test-api": "tape --conditions development test/**.test.js",
  25. "test-coverage": "c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov npm run test-api",
  26. "lint": "eslint \"**/*.{cjs, js,jsx,ts,tsx}\"",
  27. "lint:fix": "eslint \"**/*.{cjs, js,jsx,ts,tsx}\" --fix"
  28. },
  29. "dependencies": {
  30. "@types/mdast": "^3.0.0",
  31. "@types/unist": "^2.0.0",
  32. "mdast-util-to-markdown": "^1.3.0",
  33. "micromark-factory-space": "^1.0.0",
  34. "micromark-factory-whitespace": "^1.0.0",
  35. "micromark-util-character": "^1.0.0",
  36. "micromark-util-symbol": "^1.0.0",
  37. "micromark-util-types": "^1.0.0",
  38. "parse-entities": "^4.0.0",
  39. "stringify-entities": "^4.0.0",
  40. "unified": "^10.0.0",
  41. "unist-util-visit-parents": "^5.0.0",
  42. "uvu": "^0.5.0"
  43. },
  44. "devDependencies": {
  45. "@types/tape": "^4.0.0",
  46. "c8": "^7.0.0",
  47. "html-void-elements": "^2.0.0",
  48. "is-hidden": "^2.0.0",
  49. "mdast-util-from-markdown": "^1.0.0",
  50. "micromark": "^3.0.0",
  51. "micromark-build": "^1.0.0",
  52. "remark": "^14.0.0",
  53. "remark-cli": "^10.0.0",
  54. "remark-preset-wooorm": "^9.0.0",
  55. "rimraf": "^3.0.0",
  56. "tape": "^5.0.0",
  57. "to-vfile": "^7.0.0",
  58. "type-coverage": "^2.0.0",
  59. "typescript": "^4.0.0",
  60. "unist-util-remove-position": "^4.0.0",
  61. "xo": "^0.47.0"
  62. },
  63. "typeCoverage": {
  64. "atLeast": 100,
  65. "detail": true,
  66. "strict": true,
  67. "ignoreCatch": true
  68. }
  69. }