| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- {
- "name": "@growi/remark-growi-plugin",
- "version": "6.0.0-RC.6",
- "description": "remark plugin to support GROWI plugin (forked from remark-directive@2.0.1)",
- "license": "MIT",
- "keywords": [
- "unified",
- "remark",
- "remark-plugin",
- "plugin",
- "mdast",
- "markdown",
- "generic"
- ],
- "type": "module",
- "main": "dist/index.js",
- "typings": "dist/index.d.ts",
- "scripts": {
- "build": "yarn tsc && tsc-alias -p tsconfig.build.json",
- "clean": "npx -y shx rm -rf dist",
- "tsc": "tsc -p tsconfig.build.json",
- "tsc:w": "yarn tsc -w",
- "test": "cross-env NODE_ENV=test npm run test-coverage",
- "test-api": "tape --conditions development test/**.test.js",
- "test-coverage": "c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov npm run test-api",
- "lint": "eslint \"**/*.{cjs, js,jsx,ts,tsx}\"",
- "lint:fix": "eslint \"**/*.{cjs, js,jsx,ts,tsx}\" --fix"
- },
- "dependencies": {
- "@types/mdast": "^3.0.0",
- "@types/unist": "^2.0.0",
- "mdast-util-to-markdown": "^1.3.0",
- "micromark-factory-space": "^1.0.0",
- "micromark-factory-whitespace": "^1.0.0",
- "micromark-util-character": "^1.0.0",
- "micromark-util-symbol": "^1.0.0",
- "micromark-util-types": "^1.0.0",
- "parse-entities": "^4.0.0",
- "stringify-entities": "^4.0.0",
- "unified": "^10.0.0",
- "unist-util-visit-parents": "^5.0.0",
- "uvu": "^0.5.0"
- },
- "devDependencies": {
- "@types/tape": "^4.0.0",
- "c8": "^7.0.0",
- "html-void-elements": "^2.0.0",
- "is-hidden": "^2.0.0",
- "mdast-util-from-markdown": "^1.0.0",
- "micromark": "^3.0.0",
- "micromark-build": "^1.0.0",
- "remark": "^14.0.0",
- "remark-cli": "^10.0.0",
- "remark-preset-wooorm": "^9.0.0",
- "rimraf": "^3.0.0",
- "tape": "^5.0.0",
- "to-vfile": "^7.0.0",
- "type-coverage": "^2.0.0",
- "typescript": "^4.0.0",
- "unist-util-remove-position": "^4.0.0",
- "xo": "^0.47.0"
- },
- "typeCoverage": {
- "atLeast": 100,
- "detail": true,
- "strict": true,
- "ignoreCatch": true
- }
- }
|