-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.23 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
{
"name": "gitbook-plugin-terminal",
"description": "Change code blocks to look more like a terminal",
"main": "index.js",
"license": "MIT",
"homepage": "https://github.com/davidmogar/gitbook-plugin-terminal",
"version": "0.3.2",
"author": {
"name": "David Moreno-García",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidmogar/gitbook-plugin-terminal.git"
},
"keywords": [
"gitbook",
"github",
"terminal",
"plugin"
],
"bugs": {
"url": "https://github.com/davidmogar/gitbook-plugin-terminal/issues"
},
"engines": {
"gitbook": ">2.5.0"
},
"gitbook": {
"properties": {
"copyButtons": {
"default": true,
"title": "Adds buttons to copy the commands",
"type": "boolean"
},
"fade": {
"default": true,
"title": "If true, the text will fade to highlight the command",
"type": "boolean"
},
"style": {
"default": "flat",
"enum": [
"black",
"classic",
"flat",
"ubuntu",
"white"
],
"title": "Style for the terminal (defaults to 'flat')",
"type": "string"
}
}
}
}