UNPKG

gitbook-plugin-codegroup

Version:
66 lines (65 loc) 1.9 kB
{ "name": "gitbook-plugin-codegroup", "description": "codegroup plugin for GitBook", "main": "index.js", "version": "2.3.5", "engines": { "gitbook": ">=2.3.0" }, "scripts": { "test": "node_modules/.bin/mocha --reporter spec --timeout 35000 __tests__", "postpublish": "git push --follow-tags && git push", "release:patch": "npm version patch && npm publish --access public", "release:minor": "npm version minor && npm publish --access public", "release:major": "npm version major && npm publish --access public" }, "homepage": "https://plugins.gitbook.com/plugin/codegroup", "repository": { "type": "git", "url": "https://github.com/lwhiteley/gitbook-plugin-codegroup.git" }, "license": "Apache-2.0", "bugs": { "url": "https://github.com/lwhiteley/gitbook-plugin-codegroup/issues" }, "devDependencies": { "chai": "^4.1.2", "gitbook-tester": "^1.4.3", "mocha": "^5.0.4", "npm-run-all": "^4.1.5" }, "keywords": [ "gitbook", "gitbook-plugin", "codegroup", "plugin", "codeblock", "codetab" ], "dependencies": { "blueimp-md5": "^2.10.0", "boolean": "^0.1.3", "gfm-code-blocks": "^1.0.0", "lodash": "^4.17.19", "pretty": "^2.0.0" }, "gitbook": { "properties": { "defaultTabName": { "type": "string", "default": "Code", "description": "a fallback tab name if no language is specied for a fenced code block" }, "tabNameSeperator": { "type": "string", "default": "::", "description": "a string delimeter that differentiates the language name from the tab name" }, "rememberTabs": { "type": "boolean", "default": "false", "description": "determines if the plugin will remember the selected tab, given the info in the codegroup has not changed" } } } }