package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "@growi/remark-growi-plugin",
  3. "version": "5.1.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 && 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": "node --conditions development test/index.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. "mdast-util-directive": "^2.0.0",
  32. "micromark-extension-directive": "^2.0.0",
  33. "unified": "^10.0.0"
  34. },
  35. "devDependencies": {
  36. "@types/tape": "^4.0.0",
  37. "c8": "^7.0.0",
  38. "is-hidden": "^2.0.0",
  39. "prettier": "^2.0.0",
  40. "remark": "^14.0.0",
  41. "remark-cli": "^10.0.0",
  42. "remark-preset-wooorm": "^9.0.0",
  43. "rimraf": "^3.0.0",
  44. "tape": "^5.0.0",
  45. "to-vfile": "^7.0.0",
  46. "type-coverage": "^2.0.0",
  47. "typescript": "^4.0.0",
  48. "xo": "^0.46.0"
  49. },
  50. "typeCoverage": {
  51. "atLeast": 100,
  52. "detail": true,
  53. "strict": true,
  54. "ignoreCatch": true
  55. }
  56. }