| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- {
- "name": "@growi/remark-growi-directive",
- "version": "7.0.3-RC.0",
- "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 -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
- "clean": "shx rm -rf dist",
- "dev": "yarn build",
- "watch": "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": "yarn eslint \"**/*.{cjs, js,jsx,ts,tsx}\"",
- "lint:fix": "yarn eslint \"**/*.{cjs, js,jsx,ts,tsx}\" --fix",
- "version": "yarn version --no-git-tag-version --preid=RC"
- },
- "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",
- "remark": "^14.0.0",
- "rimraf": "^3.0.0",
- "tape": "^5.0.0",
- "to-vfile": "^7.0.0",
- "type-coverage": "^2.0.0",
- "unist-util-remove-position": "^4.0.0"
- },
- "typeCoverage": {
- "atLeast": 100,
- "detail": true,
- "strict": true,
- "ignoreCatch": true
- }
- }
|