1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {
- "name": "markdown-it-anchor",
- "version": "8.4.1",
- "description": "Header anchors for markdown-it.",
- "source": "index.js",
- "main": "dist/markdownItAnchor.js",
- "module": "dist/markdownItAnchor.mjs",
- "unpkg": "dist/markdownItAnchor.umd.js",
- "mangle": {
- "regex": "^_"
- },
- "types": "./types/index.d.ts",
- "keywords": [
- "markdown",
- "markdown-it",
- "markdown-it-plugin",
- "header",
- "anchor"
- ],
- "homepage": "https://github.com/valeriangalliat/markdown-it-anchor",
- "license": "Unlicense",
- "files": [
- "README.md",
- "UNLICENSE",
- "dist/*",
- "runkit.js",
- "types/*"
- ],
- "repository": {
- "type": "git",
- "url": "https://github.com/valeriangalliat/markdown-it-anchor.git"
- },
- "scripts": {
- "build": "microbundle",
- "dev": "microbundle watch",
- "lint": "standard index.js test.js",
- "prepare": "npm run build && npm test",
- "test": "npm run lint && ava test.js"
- },
- "runkitExampleFilename": "runkit.js",
- "devDependencies": {
- "ava": "^3.15.0",
- "markdown-it": "*",
- "markdown-it-attrs": "^3.0.1",
- "microbundle": "^0.12.0",
- "source-map-support": "^0.5.19",
- "standard": "^14.3.1"
- },
- "peerDependencies": {
- "markdown-it": "*",
- "@types/markdown-it": "*"
- }
- }
|