-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.85 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"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"
}
}
}
}