UNPKG

remark-code-snippets

Version:

Import snippets of source code from files as code blocks

49 lines (48 loc) 1.02 kB
{ "name": "remark-code-snippets", "description": "Import snippets of source code from files as code blocks", "version": "1.1.0", "author": "John Knox", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/jknoxville/remark-code-snippets.git" }, "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "/dist" ], "keywords": [ "remark", "remark-plugin", "markdown", "code-block", "code-fence", "file-system", "import-code", "snippets", "code-snippets" ], "scripts": { "build": "tsc", "clean": "rm -rf dist", "prepare": "yarn clean && yarn test && yarn build", "test": "jest" }, "dependencies": { "unified": "^9.2.1", "unist-util-visit": "^2.0.1" }, "devDependencies": { "jest": "^26.6.3", "prettier": "1.19.1", "remark": "^13.0.0", "ts-jest": "^26.5.1", "typescript": "^4.1.5" }, "prettier": { "singleQuote": true, "trailingComma": "es5" } }