package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "@growi/remark-growi-directive",
  3. "version": "7.0.3-RC.0",
  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 -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
  20. "clean": "shx rm -rf dist",
  21. "dev": "yarn build",
  22. "watch": "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": "yarn eslint \"**/*.{cjs, js,jsx,ts,tsx}\"",
  27. "lint:fix": "yarn eslint \"**/*.{cjs, js,jsx,ts,tsx}\" --fix",
  28. "version": "yarn version --no-git-tag-version --preid=RC"
  29. },
  30. "dependencies": {
  31. "@types/mdast": "^3.0.0",
  32. "@types/unist": "^2.0.0",
  33. "mdast-util-to-markdown": "^1.3.0",
  34. "micromark-factory-space": "^1.0.0",
  35. "micromark-factory-whitespace": "^1.0.0",
  36. "micromark-util-character": "^1.0.0",
  37. "micromark-util-symbol": "^1.0.0",
  38. "micromark-util-types": "^1.0.0",
  39. "parse-entities": "^4.0.0",
  40. "stringify-entities": "^4.0.0",
  41. "unified": "^10.0.0",
  42. "unist-util-visit-parents": "^5.0.0",
  43. "uvu": "^0.5.0"
  44. },
  45. "devDependencies": {
  46. "@types/tape": "^4.0.0",
  47. "c8": "^7.0.0",
  48. "html-void-elements": "^2.0.0",
  49. "is-hidden": "^2.0.0",
  50. "mdast-util-from-markdown": "^1.0.0",
  51. "micromark": "^3.0.0",
  52. "remark": "^14.0.0",
  53. "rimraf": "^3.0.0",
  54. "tape": "^5.0.0",
  55. "to-vfile": "^7.0.0",
  56. "type-coverage": "^2.0.0",
  57. "unist-util-remove-position": "^4.0.0"
  58. },
  59. "typeCoverage": {
  60. "atLeast": 100,
  61. "detail": true,
  62. "strict": true,
  63. "ignoreCatch": true
  64. }
  65. }